pub enum EscrowEvent {
    Add {
        owner: Address,
        escrow: Address,
        amount: Quantity,
        new_shares: Quantity,
    },
    Take {
        owner: Address,
        amount: Quantity,
        debonding_amount: Quantity,
    },
    DebondingStart {
        owner: Address,
        escrow: Address,
        amount: Quantity,
        active_shares: Quantity,
        debonding_shares: Quantity,
        debond_end_time: EpochTime,
    },
    Reclaim {
        owner: Address,
        escrow: Address,
        amount: Quantity,
        shares: Quantity,
    },
}Expand description
Escrow-related events.
Variants§
Add
Event emitted when stake is transferred into an escrow account.
Take
Event emitted when stake is taken from an escrow account (i.e. stake is slashed).
DebondingStart
Event emitted when the debonding process has started and the given number of active shares have been moved into the debonding pool and started debonding.
Note that the given amount is valid at the time of debonding start and may not correspond to the final debonded amount in case any escrowed stake is subject to slashing.
Reclaim
Event emitted when stake is reclaimed from an escrow account back into owner’s general account.
Trait Implementations§
Source§impl Clone for EscrowEvent
 
impl Clone for EscrowEvent
Source§fn clone(&self) -> EscrowEvent
 
fn clone(&self) -> EscrowEvent
Returns a copy 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 EscrowEvent
 
impl Debug for EscrowEvent
Source§impl Decode for EscrowEvent
 
impl Decode for EscrowEvent
Source§fn try_from_cbor_value(value: Value) -> Result<Self, DecodeError>
 
fn try_from_cbor_value(value: Value) -> Result<Self, DecodeError>
Try to decode from a given CBOR value.
§fn try_default() -> Result<Self, DecodeError>where
    Self: Sized,
 
fn try_default() -> Result<Self, DecodeError>where
    Self: Sized,
Try to decode from a missing/null/undefined value.
§fn try_from_cbor_value_default(value: Value) -> Result<Self, DecodeError>where
    Self: Sized,
 
fn try_from_cbor_value_default(value: Value) -> Result<Self, DecodeError>where
    Self: Sized,
Try to decode from a given CBOR value, calling 
try_default in case the value is null or
undefined.Source§impl Encode for EscrowEvent
 
impl Encode for EscrowEvent
Source§impl EncodeAsMap for EscrowEvent
 
impl EncodeAsMap for EscrowEvent
§fn into_cbor_value_map(self) -> Valuewhere
    Self: Sized,
 
fn into_cbor_value_map(self) -> Valuewhere
    Self: Sized,
Encode the type into a CBOR Map.
§fn into_cbor_map(self) -> Vec<(Value, Value)>where
    Self: Sized,
 
fn into_cbor_map(self) -> Vec<(Value, Value)>where
    Self: Sized,
Encode the type into a CBOR Map, returning the map items.
Source§impl Hash for EscrowEvent
 
impl Hash for EscrowEvent
Source§impl PartialEq for EscrowEvent
 
impl PartialEq for EscrowEvent
impl Eq for EscrowEvent
impl StructuralPartialEq for EscrowEvent
Auto Trait Implementations§
impl Freeze for EscrowEvent
impl RefUnwindSafe for EscrowEvent
impl Send for EscrowEvent
impl Sync for EscrowEvent
impl Unpin for EscrowEvent
impl UnwindSafe for EscrowEvent
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
    T: 'a,
 
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
    T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
    T: 'a,
 
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
    T: 'a,
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,
§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.