pub struct InstructionDisplayNode {
pub intent: Option<String>,
pub interpolated_intent: Option<String>,
}Fields§
§intent: Option<String>§interpolated_intent: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for InstructionDisplayNode
impl Clone for InstructionDisplayNode
Source§fn clone(&self) -> InstructionDisplayNode
fn clone(&self) -> InstructionDisplayNode
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 InstructionDisplayNode
impl Debug for InstructionDisplayNode
Source§impl Default for InstructionDisplayNode
impl Default for InstructionDisplayNode
Source§fn default() -> InstructionDisplayNode
fn default() -> InstructionDisplayNode
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InstructionDisplayNode
impl<'de> Deserialize<'de> for InstructionDisplayNode
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<InstructionDisplayNode> for DisplayNode
impl From<InstructionDisplayNode> for DisplayNode
Source§fn from(value: InstructionDisplayNode) -> Self
fn from(value: InstructionDisplayNode) -> Self
Converts to this type from the input type.
Source§impl From<InstructionDisplayNode> for Node
impl From<InstructionDisplayNode> for Node
Source§fn from(val: InstructionDisplayNode) -> Self
fn from(val: InstructionDisplayNode) -> Self
Converts to this type from the input type.
Source§impl NodeTrait for InstructionDisplayNode
impl NodeTrait for InstructionDisplayNode
const KIND: &'static str = "instructionDisplayNode"
fn to_json(&self) -> CodamaResult<String>
fn to_json_pretty(&self) -> CodamaResult<String>
fn from_json(json: &str) -> CodamaResult<Self>
Source§impl PartialEq for InstructionDisplayNode
impl PartialEq for InstructionDisplayNode
Source§impl Serialize for InstructionDisplayNode
impl Serialize for InstructionDisplayNode
impl StructuralPartialEq for InstructionDisplayNode
Auto Trait Implementations§
impl Freeze for InstructionDisplayNode
impl RefUnwindSafe for InstructionDisplayNode
impl Send for InstructionDisplayNode
impl Sync for InstructionDisplayNode
impl Unpin for InstructionDisplayNode
impl UnsafeUnpin for InstructionDisplayNode
impl UnwindSafe for InstructionDisplayNode
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