[][src]Struct cddl_cat::ast::NameGeneric

pub struct NameGeneric {
    pub name: String,
    pub generic_args: Vec<Type1>,
}

A name identifier with generic arguments.

A name may have generic arguments, e.g. message<K,V>. A name without generic arguments will have an empty generic_args Vec.

CDDL ABNF grammar:

genericarg = "<" S type1 S *("," S type1 S ) ">"
type2 = ...
      / typename [genericarg]
      / "~" S typename [genericarg]
      / "&" S groupname [genericarg]
      / ...

Fields

name: String

A type or group name.

generic_args: Vec<Type1>

Generic arguments, if any.

Trait Implementations

impl Debug for NameGeneric[src]

impl PartialEq<NameGeneric> for NameGeneric[src]

impl StructuralPartialEq for NameGeneric[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.