pub struct SomeValueNode {
    pub value: Box<ValueNode>,
}Fields§
§value: Box<ValueNode>Implementations§
Trait Implementations§
Source§impl Clone for SomeValueNode
 
impl Clone for SomeValueNode
Source§fn clone(&self) -> SomeValueNode
 
fn clone(&self) -> SomeValueNode
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 SomeValueNode
 
impl Debug for SomeValueNode
Source§impl<'de> Deserialize<'de> for SomeValueNode
 
impl<'de> Deserialize<'de> for SomeValueNode
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<SomeValueNode> for InstructionInputValueNode
 
impl From<SomeValueNode> for InstructionInputValueNode
Source§fn from(value: SomeValueNode) -> Self
 
fn from(value: SomeValueNode) -> Self
Converts to this type from the input type.
Source§impl From<SomeValueNode> for Node
 
impl From<SomeValueNode> for Node
Source§fn from(val: SomeValueNode) -> Self
 
fn from(val: SomeValueNode) -> Self
Converts to this type from the input type.
Source§impl From<SomeValueNode> for PdaSeedValueValueNode
 
impl From<SomeValueNode> for PdaSeedValueValueNode
Source§fn from(value: SomeValueNode) -> Self
 
fn from(value: SomeValueNode) -> Self
Converts to this type from the input type.
Source§impl From<SomeValueNode> for RegisteredValueNode
 
impl From<SomeValueNode> for RegisteredValueNode
Source§fn from(value: SomeValueNode) -> Self
 
fn from(value: SomeValueNode) -> Self
Converts to this type from the input type.
Source§impl From<SomeValueNode> for ValueNode
 
impl From<SomeValueNode> for ValueNode
Source§fn from(value: SomeValueNode) -> Self
 
fn from(value: SomeValueNode) -> Self
Converts to this type from the input type.
Source§impl NodeTrait for SomeValueNode
 
impl NodeTrait for SomeValueNode
const KIND: &'static str = "someValueNode"
fn to_json(&self) -> CodamaResult<String>
fn to_json_pretty(&self) -> CodamaResult<String>
fn from_json(json: &str) -> CodamaResult<Self>
Source§impl PartialEq for SomeValueNode
 
impl PartialEq for SomeValueNode
Source§impl Serialize for SomeValueNode
 
impl Serialize for SomeValueNode
impl StructuralPartialEq for SomeValueNode
Auto Trait Implementations§
impl Freeze for SomeValueNode
impl RefUnwindSafe for SomeValueNode
impl Send for SomeValueNode
impl Sync for SomeValueNode
impl Unpin for SomeValueNode
impl UnwindSafe for SomeValueNode
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