pub struct InstructionArgumentLinkNode {
pub name: CamelCaseString,
pub instruction: Option<InstructionLinkNode>,
}
Fields§
§name: CamelCaseString
§instruction: Option<InstructionLinkNode>
Implementations§
Source§impl InstructionArgumentLinkNode
impl InstructionArgumentLinkNode
pub fn new<T>(name: T) -> InstructionArgumentLinkNodewhere
T: Into<CamelCaseString>,
pub fn new_from_instruction<T>(
name: T,
instruction: InstructionLinkNode,
) -> InstructionArgumentLinkNodewhere
T: Into<CamelCaseString>,
Trait Implementations§
Source§impl Clone for InstructionArgumentLinkNode
impl Clone for InstructionArgumentLinkNode
Source§fn clone(&self) -> InstructionArgumentLinkNode
fn clone(&self) -> InstructionArgumentLinkNode
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 InstructionArgumentLinkNode
impl Debug for InstructionArgumentLinkNode
Source§impl<'de> Deserialize<'de> for InstructionArgumentLinkNode
impl<'de> Deserialize<'de> for InstructionArgumentLinkNode
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<InstructionArgumentLinkNode, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<InstructionArgumentLinkNode, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&str> for InstructionArgumentLinkNode
impl From<&str> for InstructionArgumentLinkNode
Source§fn from(name: &str) -> InstructionArgumentLinkNode
fn from(name: &str) -> InstructionArgumentLinkNode
Converts to this type from the input type.
Source§impl From<InstructionArgumentLinkNode> for LinkNode
impl From<InstructionArgumentLinkNode> for LinkNode
Source§fn from(value: InstructionArgumentLinkNode) -> LinkNode
fn from(value: InstructionArgumentLinkNode) -> LinkNode
Converts to this type from the input type.
Source§impl From<InstructionArgumentLinkNode> for Node
impl From<InstructionArgumentLinkNode> for Node
Source§fn from(val: InstructionArgumentLinkNode) -> Node
fn from(val: InstructionArgumentLinkNode) -> Node
Converts to this type from the input type.
Source§impl From<String> for InstructionArgumentLinkNode
impl From<String> for InstructionArgumentLinkNode
Source§fn from(name: String) -> InstructionArgumentLinkNode
fn from(name: String) -> InstructionArgumentLinkNode
Converts to this type from the input type.
Source§impl Serialize for InstructionArgumentLinkNode
impl Serialize for InstructionArgumentLinkNode
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 InstructionArgumentLinkNode
Auto Trait Implementations§
impl Freeze for InstructionArgumentLinkNode
impl RefUnwindSafe for InstructionArgumentLinkNode
impl Send for InstructionArgumentLinkNode
impl Sync for InstructionArgumentLinkNode
impl Unpin for InstructionArgumentLinkNode
impl UnwindSafe for InstructionArgumentLinkNode
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