pub enum RfxStatus {
Draft,
Published,
Closed,
Awarded,
Cancelled,
NoAward,
}Expand description
Status of an RFx event.
Variants§
Draft
RFx created, not yet published
Published
Published and open for responses
Closed
Response period ended, under evaluation
Awarded
Evaluation complete, winner selected
Cancelled
RFx cancelled
NoAward
No suitable bids received
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RfxStatus
impl<'de> Deserialize<'de> for RfxStatus
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
impl Copy for RfxStatus
impl Eq for RfxStatus
impl StructuralPartialEq for RfxStatus
Auto Trait Implementations§
impl Freeze for RfxStatus
impl RefUnwindSafe for RfxStatus
impl Send for RfxStatus
impl Sync for RfxStatus
impl Unpin for RfxStatus
impl UnwindSafe for RfxStatus
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> 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.