pub struct AllocationTrajectory {
pub steps: Vec<AllocationStep>,
}Expand description
The realized sequence of target allocations the account rebalanced to.
Fields§
§steps: Vec<AllocationStep>Trait Implementations§
Source§impl Clone for AllocationTrajectory
impl Clone for AllocationTrajectory
Source§fn clone(&self) -> AllocationTrajectory
fn clone(&self) -> AllocationTrajectory
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AllocationTrajectory
impl Debug for AllocationTrajectory
Source§impl Default for AllocationTrajectory
impl Default for AllocationTrajectory
Source§fn default() -> AllocationTrajectory
fn default() -> AllocationTrajectory
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AllocationTrajectory
impl<'de> Deserialize<'de> for AllocationTrajectory
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
Auto Trait Implementations§
impl Freeze for AllocationTrajectory
impl RefUnwindSafe for AllocationTrajectory
impl Send for AllocationTrajectory
impl Sync for AllocationTrajectory
impl Unpin for AllocationTrajectory
impl UnsafeUnpin for AllocationTrajectory
impl UnwindSafe for AllocationTrajectory
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