pub enum DepositState {
Pending,
Completed,
Rejected,
Replaced,
}Variants§
Trait Implementations§
Source§impl Clone for DepositState
impl Clone for DepositState
Source§fn clone(&self) -> DepositState
fn clone(&self) -> DepositState
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 moreSource§impl Debug for DepositState
impl Debug for DepositState
Source§impl Default for DepositState
impl Default for DepositState
Source§fn default() -> DepositState
fn default() -> DepositState
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DepositState
impl<'de> Deserialize<'de> for DepositState
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
Source§impl PartialEq for DepositState
impl PartialEq for DepositState
Source§impl Serialize for DepositState
impl Serialize for DepositState
impl StructuralPartialEq for DepositState
Auto Trait Implementations§
impl Freeze for DepositState
impl RefUnwindSafe for DepositState
impl Send for DepositState
impl Sync for DepositState
impl Unpin for DepositState
impl UnwindSafe for DepositState
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