Struct cronos_sdk::account::AccountMetaData
source · [−]Fields
pubkey: PubkeyAn account’s public key
is_signer: boolTrue if an Instruction requires a Transaction signature matching pubkey.
is_writable: boolTrue if the pubkey can be loaded as a read-write account.
Trait Implementations
sourceimpl BorshDeserialize for AccountMetaData where
Pubkey: BorshDeserialize,
bool: BorshDeserialize,
impl BorshDeserialize for AccountMetaData where
Pubkey: BorshDeserialize,
bool: BorshDeserialize,
sourcepub fn deserialize(buf: &mut &[u8]) -> Result<AccountMetaData, Error>
pub fn deserialize(buf: &mut &[u8]) -> Result<AccountMetaData, Error>
Deserializes this instance from a given slice of bytes. Updates the buffer to point at the remaining bytes. Read more
sourceimpl BorshSerialize for AccountMetaData where
Pubkey: BorshSerialize,
bool: BorshSerialize,
impl BorshSerialize for AccountMetaData where
Pubkey: BorshSerialize,
bool: BorshSerialize,
sourceimpl Clone for AccountMetaData
impl Clone for AccountMetaData
sourcepub fn clone(&self) -> AccountMetaData
pub fn clone(&self) -> AccountMetaData
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for AccountMetaData
impl Debug for AccountMetaData
sourceimpl PartialEq<AccountMetaData> for AccountMetaData
impl PartialEq<AccountMetaData> for AccountMetaData
sourcepub fn eq(&self, other: &AccountMetaData) -> bool
pub fn eq(&self, other: &AccountMetaData) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcepub fn ne(&self, other: &AccountMetaData) -> bool
pub fn ne(&self, other: &AccountMetaData) -> bool
This method tests for !=.
impl StructuralPartialEq for AccountMetaData
Auto Trait Implementations
impl RefUnwindSafe for AccountMetaData
impl Send for AccountMetaData
impl Sync for AccountMetaData
impl Unpin for AccountMetaData
impl UnwindSafe for AccountMetaData
Blanket Implementations
impl<T> AbiExample for T
impl<T> AbiExample for T
pub default fn example() -> T
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<T> Pointable for T
impl<T> Pointable for T
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
pub fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more