pub struct PoolWithDelegators {
pub operator: PublicAddress,
pub power: u64,
pub commission_rate: u8,
pub operator_stake: Option<Stake>,
pub delegated_stakes: Vec<Stake>,
}Fields§
§operator: PublicAddress§power: u64§commission_rate: u8§operator_stake: Option<Stake>§delegated_stakes: Vec<Stake>Trait Implementations§
Source§impl BorshDeserialize for PoolWithDelegators
impl BorshDeserialize for PoolWithDelegators
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 PoolWithDelegatorswhere
PublicAddress: BorshSerialize,
u64: BorshSerialize,
u8: BorshSerialize,
Option<Stake>: BorshSerialize,
Vec<Stake>: BorshSerialize,
impl BorshSerialize for PoolWithDelegatorswhere
PublicAddress: BorshSerialize,
u64: BorshSerialize,
u8: BorshSerialize,
Option<Stake>: BorshSerialize,
Vec<Stake>: BorshSerialize,
Source§impl Clone for PoolWithDelegators
impl Clone for PoolWithDelegators
Source§fn clone(&self) -> PoolWithDelegators
fn clone(&self) -> PoolWithDelegators
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 moreAuto Trait Implementations§
impl Freeze for PoolWithDelegators
impl RefUnwindSafe for PoolWithDelegators
impl Send for PoolWithDelegators
impl Sync for PoolWithDelegators
impl Unpin for PoolWithDelegators
impl UnwindSafe for PoolWithDelegators
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