pub enum DisbursementInstruction {
DisbursementAmountInstruction(DisbursementAmountInstruction),
DisbursementPercentageInstruction(DisbursementPercentageInstruction),
}
Variants§
DisbursementAmountInstruction(DisbursementAmountInstruction)
DisbursementPercentageInstruction(DisbursementPercentageInstruction)
Trait Implementations§
Source§impl Clone for DisbursementInstruction
impl Clone for DisbursementInstruction
Source§fn clone(&self) -> DisbursementInstruction
fn clone(&self) -> DisbursementInstruction
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 DisbursementInstruction
impl Debug for DisbursementInstruction
Source§impl Default for DisbursementInstruction
impl Default for DisbursementInstruction
Source§impl<'de> Deserialize<'de> for DisbursementInstruction
impl<'de> Deserialize<'de> for DisbursementInstruction
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 DisbursementInstruction
impl PartialEq for DisbursementInstruction
Source§impl Serialize for DisbursementInstruction
impl Serialize for DisbursementInstruction
impl StructuralPartialEq for DisbursementInstruction
Auto Trait Implementations§
impl Freeze for DisbursementInstruction
impl RefUnwindSafe for DisbursementInstruction
impl Send for DisbursementInstruction
impl Sync for DisbursementInstruction
impl Unpin for DisbursementInstruction
impl UnwindSafe for DisbursementInstruction
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