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