pub struct AccountUsage {
pub account_name: String,
pub instructions: Vec<InstructionRef>,
pub is_writable: bool,
pub is_signer: bool,
pub is_pda: bool,
}Fields§
§account_name: String§instructions: Vec<InstructionRef>§is_writable: bool§is_signer: bool§is_pda: boolTrait Implementations§
Source§impl Clone for AccountUsage
impl Clone for AccountUsage
Source§fn clone(&self) -> AccountUsage
fn clone(&self) -> AccountUsage
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 AccountUsage
impl RefUnwindSafe for AccountUsage
impl Send for AccountUsage
impl Sync for AccountUsage
impl Unpin for AccountUsage
impl UnsafeUnpin for AccountUsage
impl UnwindSafe for AccountUsage
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