pub enum TypedHelp {
Struct {
name: &'static str,
fields: &'static [FieldHelp],
},
Enum {
name: &'static str,
variants: &'static [FieldHelp],
},
String,
Int,
Float,
Bool,
Unit,
Custom {
desc: &'static str,
},
Array(&'static TypedHelp),
Option(&'static TypedHelp),
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TypedHelp
impl RefUnwindSafe for TypedHelp
impl Send for TypedHelp
impl Sync for TypedHelp
impl Unpin for TypedHelp
impl UnwindSafe for TypedHelp
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more