pub enum PlanReviewStatus {
NotReviewed,
NeedsReview,
Approved,
Rejected,
Revised,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for PlanReviewStatus
impl Clone for PlanReviewStatus
Source§fn clone(&self) -> PlanReviewStatus
fn clone(&self) -> PlanReviewStatus
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 PlanReviewStatus
impl Debug for PlanReviewStatus
Source§impl Display for PlanReviewStatus
impl Display for PlanReviewStatus
Source§impl FromStr for PlanReviewStatus
impl FromStr for PlanReviewStatus
Source§impl Hash for PlanReviewStatus
impl Hash for PlanReviewStatus
Source§impl Ord for PlanReviewStatus
impl Ord for PlanReviewStatus
Source§fn cmp(&self, other: &PlanReviewStatus) -> Ordering
fn cmp(&self, other: &PlanReviewStatus) -> 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 PlanReviewStatus
impl PartialEq for PlanReviewStatus
Source§fn eq(&self, other: &PlanReviewStatus) -> bool
fn eq(&self, other: &PlanReviewStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for PlanReviewStatus
impl PartialOrd for PlanReviewStatus
impl Copy for PlanReviewStatus
impl Eq for PlanReviewStatus
impl StructuralPartialEq for PlanReviewStatus
Auto Trait Implementations§
impl Freeze for PlanReviewStatus
impl RefUnwindSafe for PlanReviewStatus
impl Send for PlanReviewStatus
impl Sync for PlanReviewStatus
impl Unpin for PlanReviewStatus
impl UnsafeUnpin for PlanReviewStatus
impl UnwindSafe for PlanReviewStatus
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