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