pub struct PrefixedCountNode {
pub prefix: NestedTypeNode<NumberTypeNode>,
}
Fields§
§prefix: NestedTypeNode<NumberTypeNode>
Implementations§
Source§impl PrefixedCountNode
impl PrefixedCountNode
pub fn new<T>(prefix: T) -> 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<PrefixedCountNode, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<PrefixedCountNode, <__D as Deserializer<'de>>::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) -> CountNode
fn from(value: PrefixedCountNode) -> CountNode
Converts to this type from the input type.
Source§impl From<PrefixedCountNode> for Node
impl From<PrefixedCountNode> for Node
Source§fn from(val: PrefixedCountNode) -> Node
fn from(val: PrefixedCountNode) -> Node
Converts to this type from the input type.
Source§impl NodeTrait for PrefixedCountNode
impl NodeTrait for PrefixedCountNode
Source§impl PartialEq for PrefixedCountNode
impl PartialEq for PrefixedCountNode
Source§impl Serialize for PrefixedCountNode
impl Serialize for PrefixedCountNode
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 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