florian1345

Results 5 issues of florian1345

Unless I am missing something, there is currently no way of providing the `"` character as part of a quoted argument to a command. In quoted context, it is always...

The usage documentations in the help command of commands of sub-sub-groups are missing the first prefix. # Code Example ```rust #[group] #[commands(...)] #[sub_groups(sub)] struct Root; #[group("Sub")] #[prefix("sub")] #[commands(...)] #[sub_groups(subsub)] struct...

bug
framework

Just an informal collection of problems I encountered and fixed locally. Sorry for not presenting it in a more organized way. Feel free to modify/integrate it however you like. -...

Currently, it is possible to convert `Bucket`s into raw pointers through `Bucket::as_ptr`, but I was unable to find a reverse. Would it be possible to offer a `[unsafe] fn Bucket::from_ptr(ptr:...

Implemented my proposal to resolve #12 . Instead of `Seek`, the (non-seeking) functionality of the `PacketReader` now requires a new trait `RevRead` which allows making a single reversible read operation....