pub struct InstructionAccountV1 {
pub name: String,
pub is_signer: bool,
pub is_writable: bool,
pub resolution: AccountResolutionV1,
pub is_optional: bool,
pub docs: Vec<String>,
}Fields§
§name: String§is_signer: bool§is_writable: bool§resolution: AccountResolutionV1§is_optional: bool§docs: Vec<String>Trait Implementations§
Source§impl Clone for InstructionAccountV1
impl Clone for InstructionAccountV1
Source§fn clone(&self) -> InstructionAccountV1
fn clone(&self) -> InstructionAccountV1
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 InstructionAccountV1
impl Debug for InstructionAccountV1
Source§impl<'de> Deserialize<'de> for InstructionAccountV1
impl<'de> Deserialize<'de> for InstructionAccountV1
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
Source§impl PartialEq for InstructionAccountV1
impl PartialEq for InstructionAccountV1
Source§impl Serialize for InstructionAccountV1
impl Serialize for InstructionAccountV1
impl StructuralPartialEq for InstructionAccountV1
Auto Trait Implementations§
impl Freeze for InstructionAccountV1
impl RefUnwindSafe for InstructionAccountV1
impl Send for InstructionAccountV1
impl Sync for InstructionAccountV1
impl Unpin for InstructionAccountV1
impl UnsafeUnpin for InstructionAccountV1
impl UnwindSafe for InstructionAccountV1
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