pub(crate) enum ProtoSpecificSetting {
Bool(bool),
Enum(Vec<&'static str>),
Num(u8),
}
Expand description
This is the basic information needed to track the specific parts of a setting when building them.
Variants§
Auto Trait Implementations§
impl Freeze for ProtoSpecificSetting
impl RefUnwindSafe for ProtoSpecificSetting
impl Send for ProtoSpecificSetting
impl Sync for ProtoSpecificSetting
impl Unpin for ProtoSpecificSetting
impl UnwindSafe for ProtoSpecificSetting
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