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