pub enum EnvironmentErrorCode {
NotFound,
Forbidden,
Conflict,
InvalidState,
CapabilityUnsupported,
TicketExpired,
LeaseRequired,
StaleFencingToken,
RevisionConflict,
}Variants§
NotFound
Forbidden
Conflict
InvalidState
CapabilityUnsupported
TicketExpired
LeaseRequired
StaleFencingToken
RevisionConflict
Trait Implementations§
Source§impl Clone for EnvironmentErrorCode
impl Clone for EnvironmentErrorCode
Source§fn clone(&self) -> EnvironmentErrorCode
fn clone(&self) -> EnvironmentErrorCode
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 EnvironmentErrorCode
Source§impl Debug for EnvironmentErrorCode
impl Debug for EnvironmentErrorCode
Source§impl<'de> Deserialize<'de> for EnvironmentErrorCode
impl<'de> Deserialize<'de> for EnvironmentErrorCode
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 EnvironmentErrorCode
Source§impl PartialEq for EnvironmentErrorCode
impl PartialEq for EnvironmentErrorCode
Source§impl Serialize for EnvironmentErrorCode
impl Serialize for EnvironmentErrorCode
impl StructuralPartialEq for EnvironmentErrorCode
Auto Trait Implementations§
impl Freeze for EnvironmentErrorCode
impl RefUnwindSafe for EnvironmentErrorCode
impl Send for EnvironmentErrorCode
impl Sync for EnvironmentErrorCode
impl Unpin for EnvironmentErrorCode
impl UnsafeUnpin for EnvironmentErrorCode
impl UnwindSafe for EnvironmentErrorCode
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