pub enum DynOrFixedType {
Dyn(u8),
Fixed(u8),
}
Variants§
Trait Implementations§
Source§impl Clone for DynOrFixedType
impl Clone for DynOrFixedType
Source§fn clone(&self) -> DynOrFixedType
fn clone(&self) -> DynOrFixedType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for DynOrFixedType
impl RefUnwindSafe for DynOrFixedType
impl Send for DynOrFixedType
impl Sync for DynOrFixedType
impl Unpin for DynOrFixedType
impl UnwindSafe for DynOrFixedType
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