pub struct StringValueNode {
pub string: String,
}Fields§
§string: StringImplementations§
Source§impl StringValueNode
impl StringValueNode
pub fn new<T>(string: T) -> StringValueNode
Trait Implementations§
Source§impl Clone for StringValueNode
impl Clone for StringValueNode
Source§fn clone(&self) -> StringValueNode
fn clone(&self) -> StringValueNode
Returns a copy 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<StringValueNode, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<StringValueNode, <__D as Deserializer<'de>>::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) -> InstructionInputValueNode
fn from(value: StringValueNode) -> InstructionInputValueNode
Converts to this type from the input type.
Source§impl From<StringValueNode> for Node
impl From<StringValueNode> for Node
Source§fn from(val: StringValueNode) -> Node
fn from(val: StringValueNode) -> Node
Converts to this type from the input type.
Source§impl From<StringValueNode> for RegisteredValueNode
impl From<StringValueNode> for RegisteredValueNode
Source§fn from(value: StringValueNode) -> RegisteredValueNode
fn from(value: StringValueNode) -> RegisteredValueNode
Converts to this type from the input type.
Source§impl From<StringValueNode> for ValueNode
impl From<StringValueNode> for ValueNode
Source§fn from(value: StringValueNode) -> ValueNode
fn from(value: StringValueNode) -> ValueNode
Converts to this type from the input type.
Source§impl NodeTrait for StringValueNode
impl NodeTrait for StringValueNode
Source§impl PartialEq for StringValueNode
impl PartialEq for StringValueNode
Source§impl Serialize for StringValueNode
impl Serialize for StringValueNode
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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