pub enum RelayDropReason {
NoSession,
QueueOverflow,
BudgetExceeded(RelayBudgetExceeded),
PolicyDrop,
ContractViolation(RelayContractError),
}Variants§
NoSession
QueueOverflow
BudgetExceeded(RelayBudgetExceeded)
PolicyDrop
ContractViolation(RelayContractError)
Trait Implementations§
Source§impl Clone for RelayDropReason
impl Clone for RelayDropReason
Source§fn clone(&self) -> RelayDropReason
fn clone(&self) -> RelayDropReason
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 RelayDropReason
impl Debug for RelayDropReason
Source§impl PartialEq for RelayDropReason
impl PartialEq for RelayDropReason
impl Eq for RelayDropReason
impl StructuralPartialEq for RelayDropReason
Auto Trait Implementations§
impl Freeze for RelayDropReason
impl RefUnwindSafe for RelayDropReason
impl Send for RelayDropReason
impl Sync for RelayDropReason
impl Unpin for RelayDropReason
impl UnsafeUnpin for RelayDropReason
impl UnwindSafe for RelayDropReason
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