pub enum InstructionRequestBodyInstruction {
TraditionalBankInstructionVerification(TraditionalBankInstructionVerification),
AchInstruction(AchInstruction),
DeleteBankInstruction(DeleteBankInstruction),
PredefinedDestinationInstruction(PredefinedDestinationInstruction),
EddaInstruction(EddaInstruction),
}Variants§
TraditionalBankInstructionVerification(TraditionalBankInstructionVerification)
AchInstruction(AchInstruction)
DeleteBankInstruction(DeleteBankInstruction)
PredefinedDestinationInstruction(PredefinedDestinationInstruction)
EddaInstruction(EddaInstruction)
Trait Implementations§
Source§impl Clone for InstructionRequestBodyInstruction
impl Clone for InstructionRequestBodyInstruction
Source§fn clone(&self) -> InstructionRequestBodyInstruction
fn clone(&self) -> InstructionRequestBodyInstruction
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 PartialEq for InstructionRequestBodyInstruction
impl PartialEq for InstructionRequestBodyInstruction
Source§fn eq(&self, other: &InstructionRequestBodyInstruction) -> bool
fn eq(&self, other: &InstructionRequestBodyInstruction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for InstructionRequestBodyInstruction
Auto Trait Implementations§
impl Freeze for InstructionRequestBodyInstruction
impl RefUnwindSafe for InstructionRequestBodyInstruction
impl Send for InstructionRequestBodyInstruction
impl Sync for InstructionRequestBodyInstruction
impl Unpin for InstructionRequestBodyInstruction
impl UnsafeUnpin for InstructionRequestBodyInstruction
impl UnwindSafe for InstructionRequestBodyInstruction
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