pub enum Uuid {
Uuid16(Uuid16),
Uuid128(Uuid128),
}
Expand description
16bit or 128bit UUID
Variants§
Implementations§
Source§impl Uuid
impl Uuid
pub const fn new_uuid16(v: u16) -> Self
pub const fn new_uuid128(v: u128) -> Self
Trait Implementations§
impl Eq for Uuid
impl StructuralPartialEq for Uuid
Auto Trait Implementations§
impl Freeze for Uuid
impl RefUnwindSafe for Uuid
impl Send for Uuid
impl Sync for Uuid
impl Unpin for Uuid
impl UnwindSafe for Uuid
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