pub struct IdlAccountArg {
pub name: String,
pub is_mut: bool,
pub is_signer: bool,
pub address: Option<String>,
pub optional: bool,
pub docs: Vec<String>,
pub pda: Option<IdlPda>,
}Fields§
§name: String§is_mut: bool§is_signer: bool§address: Option<String>§optional: bool§docs: Vec<String>§pda: Option<IdlPda>Trait Implementations§
Source§impl Clone for IdlAccountArg
impl Clone for IdlAccountArg
Source§fn clone(&self) -> IdlAccountArg
fn clone(&self) -> IdlAccountArg
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 moreSource§impl Debug for IdlAccountArg
impl Debug for IdlAccountArg
Source§impl<'de> Deserialize<'de> for IdlAccountArg
impl<'de> Deserialize<'de> for IdlAccountArg
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for IdlAccountArg
impl RefUnwindSafe for IdlAccountArg
impl Send for IdlAccountArg
impl Sync for IdlAccountArg
impl Unpin for IdlAccountArg
impl UnsafeUnpin for IdlAccountArg
impl UnwindSafe for IdlAccountArg
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