pub enum SeedEnvironment {
Local,
Development,
Test,
Staging,
Production,
}Variants§
Trait Implementations§
Source§impl Clone for SeedEnvironment
impl Clone for SeedEnvironment
Source§fn clone(&self) -> SeedEnvironment
fn clone(&self) -> SeedEnvironment
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 SeedEnvironment
Source§impl Debug for SeedEnvironment
impl Debug for SeedEnvironment
Source§impl<'de> Deserialize<'de> for SeedEnvironment
impl<'de> Deserialize<'de> for SeedEnvironment
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 Eq for SeedEnvironment
Source§impl Ord for SeedEnvironment
impl Ord for SeedEnvironment
Source§fn cmp(&self, other: &SeedEnvironment) -> Ordering
fn cmp(&self, other: &SeedEnvironment) -> 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 SeedEnvironment
impl PartialEq for SeedEnvironment
Source§impl PartialOrd for SeedEnvironment
impl PartialOrd for SeedEnvironment
Source§impl Serialize for SeedEnvironment
impl Serialize for SeedEnvironment
impl StructuralPartialEq for SeedEnvironment
Auto Trait Implementations§
impl Freeze for SeedEnvironment
impl RefUnwindSafe for SeedEnvironment
impl Send for SeedEnvironment
impl Sync for SeedEnvironment
impl Unpin for SeedEnvironment
impl UnsafeUnpin for SeedEnvironment
impl UnwindSafe for SeedEnvironment
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