pub enum RecognizedUuid {
Assigned(AssignedUuid),
Unrecognized(Uuid),
}
Variants§
Assigned(AssignedUuid)
Unrecognized(Uuid)
Trait Implementations§
Source§impl Clone for RecognizedUuid
impl Clone for RecognizedUuid
Source§fn clone(&self) -> RecognizedUuid
fn clone(&self) -> RecognizedUuid
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 moreSource§impl Debug for RecognizedUuid
impl Debug for RecognizedUuid
Source§impl DerefMut for RecognizedUuid
impl DerefMut for RecognizedUuid
Source§impl Display for RecognizedUuid
impl Display for RecognizedUuid
Source§impl From<Uuid> for RecognizedUuid
impl From<Uuid> for RecognizedUuid
Auto Trait Implementations§
impl Freeze for RecognizedUuid
impl RefUnwindSafe for RecognizedUuid
impl Send for RecognizedUuid
impl Sync for RecognizedUuid
impl Unpin for RecognizedUuid
impl UnwindSafe for RecognizedUuid
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