pub enum LifecycleStatus {
Candidate,
UnderReview,
Accepted,
Rejected,
Superseded,
}Expand description
Candidate lifecycle shared by reviewable core extension objects.
Variants§
Candidate
Proposed by an engine or actor, not accepted fact.
UnderReview
Awaiting or undergoing explicit review.
Accepted
Explicitly accepted for its declared scope.
Rejected
Explicitly rejected.
Superseded
Replaced by a later object.
Implementations§
Source§impl LifecycleStatus
impl LifecycleStatus
Sourcepub fn is_accepted(self) -> bool
pub fn is_accepted(self) -> bool
Returns true when the object is accepted for its declared scope.
Trait Implementations§
Source§impl Clone for LifecycleStatus
impl Clone for LifecycleStatus
Source§fn clone(&self) -> LifecycleStatus
fn clone(&self) -> LifecycleStatus
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 LifecycleStatus
impl Debug for LifecycleStatus
Source§impl<'de> Deserialize<'de> for LifecycleStatus
impl<'de> Deserialize<'de> for LifecycleStatus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for LifecycleStatus
impl Hash for LifecycleStatus
Source§impl PartialEq for LifecycleStatus
impl PartialEq for LifecycleStatus
Source§fn eq(&self, other: &LifecycleStatus) -> bool
fn eq(&self, other: &LifecycleStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LifecycleStatus
impl Serialize for LifecycleStatus
impl Copy for LifecycleStatus
impl Eq for LifecycleStatus
impl StructuralPartialEq for LifecycleStatus
Auto Trait Implementations§
impl Freeze for LifecycleStatus
impl RefUnwindSafe for LifecycleStatus
impl Send for LifecycleStatus
impl Sync for LifecycleStatus
impl Unpin for LifecycleStatus
impl UnsafeUnpin for LifecycleStatus
impl UnwindSafe for LifecycleStatus
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