pub struct DisbursementOperationInput {
pub amount: Option<String>,
pub payment_account: Account,
pub instruction_set: Vec<DisbursementInstruction>,
}
Fields§
§amount: Option<String>
§payment_account: Account
§instruction_set: Vec<DisbursementInstruction>
Implementations§
Source§impl DisbursementOperationInput
impl DisbursementOperationInput
pub fn new( payment_account: Account, instruction_set: Vec<DisbursementInstruction>, ) -> DisbursementOperationInput
Trait Implementations§
Source§impl Clone for DisbursementOperationInput
impl Clone for DisbursementOperationInput
Source§fn clone(&self) -> DisbursementOperationInput
fn clone(&self) -> DisbursementOperationInput
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 DisbursementOperationInput
impl Debug for DisbursementOperationInput
Source§impl Default for DisbursementOperationInput
impl Default for DisbursementOperationInput
Source§fn default() -> DisbursementOperationInput
fn default() -> DisbursementOperationInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DisbursementOperationInput
impl<'de> Deserialize<'de> for DisbursementOperationInput
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
impl StructuralPartialEq for DisbursementOperationInput
Auto Trait Implementations§
impl Freeze for DisbursementOperationInput
impl RefUnwindSafe for DisbursementOperationInput
impl Send for DisbursementOperationInput
impl Sync for DisbursementOperationInput
impl Unpin for DisbursementOperationInput
impl UnwindSafe for DisbursementOperationInput
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