pub struct AllocationGroupAccount {
pub amount: Option<f64>,
pub name: Option<String>,
}Fields§
§amount: Option<f64>The total distribution value for each sub-account for user-defined allocation methods.
name: Option<String>The accountId of a given sub-account.
Trait Implementations§
Source§impl Clone for AllocationGroupAccount
impl Clone for AllocationGroupAccount
Source§fn clone(&self) -> AllocationGroupAccount
fn clone(&self) -> AllocationGroupAccount
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 AllocationGroupAccount
impl Debug for AllocationGroupAccount
Source§impl Default for AllocationGroupAccount
impl Default for AllocationGroupAccount
Source§impl<'de> Deserialize<'de> for AllocationGroupAccount
impl<'de> Deserialize<'de> for AllocationGroupAccount
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 AllocationGroupAccount
impl PartialEq for AllocationGroupAccount
impl StructuralPartialEq for AllocationGroupAccount
Auto Trait Implementations§
impl Freeze for AllocationGroupAccount
impl RefUnwindSafe for AllocationGroupAccount
impl Send for AllocationGroupAccount
impl Sync for AllocationGroupAccount
impl Unpin for AllocationGroupAccount
impl UnsafeUnpin for AllocationGroupAccount
impl UnwindSafe for AllocationGroupAccount
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