pub struct AccountValueNode {
    pub name: CamelCaseString,
}Fields§
§name: CamelCaseStringImplementations§
Source§impl AccountValueNode
 
impl AccountValueNode
pub fn new<T>(name: T) -> Selfwhere
    T: Into<CamelCaseString>,
Trait Implementations§
Source§impl Clone for AccountValueNode
 
impl Clone for AccountValueNode
Source§fn clone(&self) -> AccountValueNode
 
fn clone(&self) -> AccountValueNode
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 AccountValueNode
 
impl Debug for AccountValueNode
Source§impl<'de> Deserialize<'de> for AccountValueNode
 
impl<'de> Deserialize<'de> for AccountValueNode
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 From<AccountValueNode> for ConditionNode
 
impl From<AccountValueNode> for ConditionNode
Source§fn from(value: AccountValueNode) -> Self
 
fn from(value: AccountValueNode) -> Self
Converts to this type from the input type.
Source§impl From<AccountValueNode> for ContextualValueNode
 
impl From<AccountValueNode> for ContextualValueNode
Source§fn from(value: AccountValueNode) -> Self
 
fn from(value: AccountValueNode) -> Self
Converts to this type from the input type.
Source§impl From<AccountValueNode> for InstructionInputValueNode
 
impl From<AccountValueNode> for InstructionInputValueNode
Source§fn from(value: AccountValueNode) -> Self
 
fn from(value: AccountValueNode) -> Self
Converts to this type from the input type.
Source§impl From<AccountValueNode> for Node
 
impl From<AccountValueNode> for Node
Source§fn from(val: AccountValueNode) -> Self
 
fn from(val: AccountValueNode) -> Self
Converts to this type from the input type.
Source§impl From<AccountValueNode> for PdaSeedValueValueNode
 
impl From<AccountValueNode> for PdaSeedValueValueNode
Source§fn from(value: AccountValueNode) -> Self
 
fn from(value: AccountValueNode) -> Self
Converts to this type from the input type.
Source§impl From<AccountValueNode> for RegisteredContextualValueNode
 
impl From<AccountValueNode> for RegisteredContextualValueNode
Source§fn from(value: AccountValueNode) -> Self
 
fn from(value: AccountValueNode) -> Self
Converts to this type from the input type.
Source§impl From<AccountValueNode> for ResolverDependency
 
impl From<AccountValueNode> for ResolverDependency
Source§fn from(value: AccountValueNode) -> Self
 
fn from(value: AccountValueNode) -> Self
Converts to this type from the input type.
Source§impl HasName for AccountValueNode
 
impl HasName for AccountValueNode
fn name(&self) -> &CamelCaseString
Source§impl NodeTrait for AccountValueNode
 
impl NodeTrait for AccountValueNode
const KIND: &'static str = "accountValueNode"
fn to_json(&self) -> CodamaResult<String>
fn to_json_pretty(&self) -> CodamaResult<String>
fn from_json(json: &str) -> CodamaResult<Self>
Source§impl PartialEq for AccountValueNode
 
impl PartialEq for AccountValueNode
Source§impl Serialize for AccountValueNode
 
impl Serialize for AccountValueNode
impl StructuralPartialEq for AccountValueNode
Auto Trait Implementations§
impl Freeze for AccountValueNode
impl RefUnwindSafe for AccountValueNode
impl Send for AccountValueNode
impl Sync for AccountValueNode
impl Unpin for AccountValueNode
impl UnwindSafe for AccountValueNode
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