pub enum ReferenceTargetState {
NeverInstalled,
Installing,
Archiving {
generation: u64,
},
Archived {
generation: u64,
},
}Expand description
Durable target state carried by a dangling cross-component reference.
Variants§
NeverInstalled
No durable meta record exists for this component identity.
Installing
Install meta is durable but the namespace is not yet active.
Archiving
Archive is in progress for this generation.
Archived
This generation is durably archived and recoverable through the facade.
Trait Implementations§
Source§impl Clone for ReferenceTargetState
impl Clone for ReferenceTargetState
Source§fn clone(&self) -> ReferenceTargetState
fn clone(&self) -> ReferenceTargetState
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 ReferenceTargetState
Source§impl Debug for ReferenceTargetState
impl Debug for ReferenceTargetState
Source§impl Display for ReferenceTargetState
impl Display for ReferenceTargetState
impl Eq for ReferenceTargetState
Source§impl Hash for ReferenceTargetState
impl Hash for ReferenceTargetState
Source§impl Ord for ReferenceTargetState
impl Ord for ReferenceTargetState
Source§fn cmp(&self, other: &ReferenceTargetState) -> Ordering
fn cmp(&self, other: &ReferenceTargetState) -> 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 ReferenceTargetState
impl PartialEq for ReferenceTargetState
Source§impl PartialOrd for ReferenceTargetState
impl PartialOrd for ReferenceTargetState
impl StructuralPartialEq for ReferenceTargetState
Auto Trait Implementations§
impl Freeze for ReferenceTargetState
impl RefUnwindSafe for ReferenceTargetState
impl Send for ReferenceTargetState
impl Sync for ReferenceTargetState
impl Unpin for ReferenceTargetState
impl UnsafeUnpin for ReferenceTargetState
impl UnwindSafe for ReferenceTargetState
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.