pub struct AutoCompound {
pub deposited_vault_value: u64,
pub net_user_flow_since_capture: i64,
pub last_pool_value: u64,
pub queued_recipient_shares: u64,
}Fields§
§deposited_vault_value: u64§net_user_flow_since_capture: i64§last_pool_value: u64Trait Implementations§
Source§impl BorshDeserialize for AutoCompound
impl BorshDeserialize for AutoCompound
fn deserialize_reader<__R: Read>(reader: &mut __R) -> Result<Self, Error>
Source§fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
Deserializes this instance from a given slice of bytes.
Updates the buffer to point at the remaining bytes.
Source§fn try_from_slice(v: &[u8]) -> Result<Self, Error>
fn try_from_slice(v: &[u8]) -> Result<Self, Error>
Deserialize this instance from a slice of bytes.
fn try_from_reader<R>(reader: &mut R) -> Result<Self, Error>where
R: Read,
Source§impl BorshSerialize for AutoCompound
impl BorshSerialize for AutoCompound
Source§impl Clone for AutoCompound
impl Clone for AutoCompound
Source§fn clone(&self) -> AutoCompound
fn clone(&self) -> AutoCompound
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 AutoCompound
impl Debug for AutoCompound
impl Eq for AutoCompound
Source§impl PartialEq for AutoCompound
impl PartialEq for AutoCompound
Source§fn eq(&self, other: &AutoCompound) -> bool
fn eq(&self, other: &AutoCompound) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AutoCompound
Auto Trait Implementations§
impl Freeze for AutoCompound
impl RefUnwindSafe for AutoCompound
impl Send for AutoCompound
impl Sync for AutoCompound
impl Unpin for AutoCompound
impl UnsafeUnpin for AutoCompound
impl UnwindSafe for AutoCompound
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