Enum PlanReviewStatus
pub enum PlanReviewStatus {
NotReviewed,
NeedsReview,
Approved,
Rejected,
Revised,
}Variants§
Implementations§
§impl PlanReviewStatus
impl PlanReviewStatus
pub const ALL: &'static [PlanReviewStatus]
pub const fn as_str(self) -> &'static str
Trait Implementations§
§impl Clone for PlanReviewStatus
impl Clone for PlanReviewStatus
§fn clone(&self) -> PlanReviewStatus
fn clone(&self) -> PlanReviewStatus
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl Debug for PlanReviewStatus
impl Debug for PlanReviewStatus
§impl Display for PlanReviewStatus
impl Display for PlanReviewStatus
§impl FromStr for PlanReviewStatus
impl FromStr for PlanReviewStatus
§type Err = PlanningError
type Err = PlanningError
The associated error which can be returned from parsing.
§fn from_str(
value: &str,
) -> Result<PlanReviewStatus, <PlanReviewStatus as FromStr>::Err>
fn from_str( value: &str, ) -> Result<PlanReviewStatus, <PlanReviewStatus as FromStr>::Err>
Parses a string
s to return a value of this type. Read more§impl Hash for PlanReviewStatus
impl Hash for PlanReviewStatus
§impl Ord for PlanReviewStatus
impl Ord for PlanReviewStatus
§fn cmp(&self, other: &PlanReviewStatus) -> Ordering
fn cmp(&self, other: &PlanReviewStatus) -> Ordering
1.21.0 · 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
§impl PartialEq for PlanReviewStatus
impl PartialEq for PlanReviewStatus
§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