pub enum ReferenceStatus {
Found,
Missing,
Inactive,
}Expand description
Whether the referenced project object is available to the selected view.
Variants§
Found
The target exists and participates in the selected view.
Missing
No target with that name is declared.
Inactive
The target service exists but its profiles are inactive.
Trait Implementations§
Source§impl Clone for ReferenceStatus
impl Clone for ReferenceStatus
Source§fn clone(&self) -> ReferenceStatus
fn clone(&self) -> ReferenceStatus
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 ReferenceStatus
Source§impl Debug for ReferenceStatus
impl Debug for ReferenceStatus
impl Eq for ReferenceStatus
Source§impl Hash for ReferenceStatus
impl Hash for ReferenceStatus
Source§impl PartialEq for ReferenceStatus
impl PartialEq for ReferenceStatus
impl StructuralPartialEq for ReferenceStatus
Auto Trait Implementations§
impl Freeze for ReferenceStatus
impl RefUnwindSafe for ReferenceStatus
impl Send for ReferenceStatus
impl Sync for ReferenceStatus
impl Unpin for ReferenceStatus
impl UnsafeUnpin for ReferenceStatus
impl UnwindSafe for ReferenceStatus
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