diff options
| author | acdenisSK <[email protected]> | 2017-10-21 12:27:23 +0200 |
|---|---|---|
| committer | acdenisSK <[email protected]> | 2017-10-21 12:27:23 +0200 |
| commit | 9428787abb6126ba05bfef96cd2b8d2a217fdf5d (patch) | |
| tree | b10f7076071c666faf6b5f9280a10f9d8288bb0a /src/framework/standard/mod.rs | |
| parent | Fix clippy warnings (diff) | |
| download | serenity-9428787abb6126ba05bfef96cd2b8d2a217fdf5d.tar.xz serenity-9428787abb6126ba05bfef96cd2b8d2a217fdf5d.zip | |
Add "zero-copy" parsing
Diffstat (limited to 'src/framework/standard/mod.rs')
| -rw-r--r-- | src/framework/standard/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/framework/standard/mod.rs b/src/framework/standard/mod.rs index 38c1d2d..947a885 100644 --- a/src/framework/standard/mod.rs +++ b/src/framework/standard/mod.rs @@ -14,7 +14,7 @@ pub use self::command::CommandOrAlias; pub use self::configuration::Configuration; pub use self::create_command::CreateCommand; pub use self::create_group::CreateGroup; -pub use self::args::{Args, Error as ArgError}; +pub use self::args::{Args, Iter, FromStrZc, Error as ArgError}; use self::command::{AfterHook, BeforeHook}; use std::collections::HashMap; |