Struct solana_stake_program::stake_state::Meta [−]
pub struct Meta {
pub rent_exempt_reserve: u64,
pub authorized: Authorized,
pub lockup: Lockup,
}
Fields
rent_exempt_reserve: u64
lockup: Lockup
Implementations
impl Meta
impl Meta
pub fn set_lockup(
&mut self,
lockup: &LockupArgs,
signers: &HashSet<Pubkey, RandomState>,
clock: Option<&Clock>
) -> Result<(), InstructionError>
Trait Implementations
impl AbiExample for Meta
impl AbiExample for Meta
impl BorshDeserialize for Meta where
u64: BorshDeserialize,
Authorized: BorshDeserialize,
Lockup: BorshDeserialize,
impl BorshDeserialize for Meta where
u64: BorshDeserialize,
Authorized: BorshDeserialize,
Lockup: BorshDeserialize,
impl BorshSchema for Meta where
u64: BorshSchema,
Authorized: BorshSchema,
Lockup: BorshSchema,
impl BorshSchema for Meta where
u64: BorshSchema,
Authorized: BorshSchema,
Lockup: BorshSchema,
pub fn declaration() -> String
pub fn declaration() -> String
Get the name of the type without brackets.
pub fn add_definitions_recursively(
definitions: &mut HashMap<String, Definition, RandomState>
)
pub fn add_definitions_recursively(
definitions: &mut HashMap<String, Definition, RandomState>
)
Recursively, using DFS, add type definitions required for this type. For primitive types this is an empty map. Type definition explains how to serialize/deserialize a type. Read more
fn add_definition(
declaration: String,
definition: Definition,
definitions: &mut HashMap<String, Definition, RandomState>
)
fn add_definition(
declaration: String,
definition: Definition,
definitions: &mut HashMap<String, Definition, RandomState>
)
Helper method to add a single type definition to the map.
fn schema_container() -> BorshSchemaContainer
impl BorshSerialize for Meta where
u64: BorshSerialize,
Authorized: BorshSerialize,
Lockup: BorshSerialize,
impl BorshSerialize for Meta where
u64: BorshSerialize,
Authorized: BorshSerialize,
Lockup: BorshSerialize,
impl<'de> Deserialize<'de> for Meta
impl<'de> Deserialize<'de> for Meta
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<Meta, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<Meta, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for Meta
Auto Trait Implementations
impl RefUnwindSafe for Meta
impl UnwindSafe for Meta
Blanket Implementations
pub default fn visit_for_abi(
&self,
_digester: &mut AbiDigester
) -> Result<AbiDigester, DigestError>
pub default fn visit_for_abi(
&self,
digester: &mut AbiDigester
) -> Result<AbiDigester, DigestError>
Mutably borrows from an owned value. Read more
pub fn vzip(self) -> V
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more