pub enum U32OrString {
U32(u32),
String(String),
}Variants§
Trait Implementations§
Source§impl PartialEq for U32OrString
impl PartialEq for U32OrString
impl StructuralPartialEq for U32OrString
Auto Trait Implementations§
impl Freeze for U32OrString
impl RefUnwindSafe for U32OrString
impl Send for U32OrString
impl Sync for U32OrString
impl Unpin for U32OrString
impl UnwindSafe for U32OrString
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