pub enum ObjectPrefixResolution {
Missing,
Unique(ObjectId),
Ambiguous(Vec<ObjectId>),
}Variants§
Trait Implementations§
Source§impl Clone for ObjectPrefixResolution
impl Clone for ObjectPrefixResolution
Source§fn clone(&self) -> ObjectPrefixResolution
fn clone(&self) -> ObjectPrefixResolution
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ObjectPrefixResolution
impl Debug for ObjectPrefixResolution
impl Eq for ObjectPrefixResolution
Source§impl PartialEq for ObjectPrefixResolution
impl PartialEq for ObjectPrefixResolution
Source§fn eq(&self, other: &ObjectPrefixResolution) -> bool
fn eq(&self, other: &ObjectPrefixResolution) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ObjectPrefixResolution
Auto Trait Implementations§
impl Freeze for ObjectPrefixResolution
impl RefUnwindSafe for ObjectPrefixResolution
impl Send for ObjectPrefixResolution
impl Sync for ObjectPrefixResolution
impl Unpin for ObjectPrefixResolution
impl UnsafeUnpin for ObjectPrefixResolution
impl UnwindSafe for ObjectPrefixResolution
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