Enum PropValue
pub enum PropValue {
Empty,
U32(u32),
U32Array(&'static [u32]),
Str(&'static str),
StringList(&'static [&'static str]),
Bytes(&'static [u8]),
}Variants§
Empty
U32(u32)
U32Array(&'static [u32])
Str(&'static str)
StringList(&'static [&'static str])
Bytes(&'static [u8])
Trait Implementations§
impl Copy for PropValue
impl StructuralPartialEq for PropValue
Auto Trait Implementations§
impl Freeze for PropValue
impl RefUnwindSafe for PropValue
impl Send for PropValue
impl Sync for PropValue
impl Unpin for PropValue
impl UnsafeUnpin for PropValue
impl UnwindSafe for PropValue
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