pub enum PushGateDecision {
Allow,
Block(Vec<LedgerEntry>),
}Variants§
Allow
Block(Vec<LedgerEntry>)
Trait Implementations§
Source§impl Clone for PushGateDecision
impl Clone for PushGateDecision
Source§fn clone(&self) -> PushGateDecision
fn clone(&self) -> PushGateDecision
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 moreSource§impl Debug for PushGateDecision
impl Debug for PushGateDecision
impl Eq for PushGateDecision
Source§impl PartialEq for PushGateDecision
impl PartialEq for PushGateDecision
Source§fn eq(&self, other: &PushGateDecision) -> bool
fn eq(&self, other: &PushGateDecision) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PushGateDecision
Auto Trait Implementations§
impl Freeze for PushGateDecision
impl RefUnwindSafe for PushGateDecision
impl Send for PushGateDecision
impl Sync for PushGateDecision
impl Unpin for PushGateDecision
impl UnsafeUnpin for PushGateDecision
impl UnwindSafe for PushGateDecision
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