pub enum ResolutionStatus {
Resolved,
Missing,
TypeMismatch,
Unsupported,
Invalid,
ExternalOutOfScope,
}Expand description
The six resolution statuses. The status is total in the code: no other pairing exists.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ResolutionStatus
impl Clone for ResolutionStatus
Source§fn clone(&self) -> ResolutionStatus
fn clone(&self) -> ResolutionStatus
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 moreimpl Copy for ResolutionStatus
Source§impl Debug for ResolutionStatus
impl Debug for ResolutionStatus
impl Eq for ResolutionStatus
Source§impl Ord for ResolutionStatus
impl Ord for ResolutionStatus
Source§fn cmp(&self, other: &ResolutionStatus) -> Ordering
fn cmp(&self, other: &ResolutionStatus) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ResolutionStatus
impl PartialEq for ResolutionStatus
Source§impl PartialOrd for ResolutionStatus
impl PartialOrd for ResolutionStatus
impl StructuralPartialEq for ResolutionStatus
Auto Trait Implementations§
impl Freeze for ResolutionStatus
impl RefUnwindSafe for ResolutionStatus
impl Send for ResolutionStatus
impl Sync for ResolutionStatus
impl Unpin for ResolutionStatus
impl UnsafeUnpin for ResolutionStatus
impl UnwindSafe for ResolutionStatus
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