[][src]Enum avdl_serde_code_generator::Rule

pub enum Rule {
    alpha,
    digit,
    whitespace,
    newline,
    whitespaces,
    WHITESPACE,
    comment,
    COMMENT,
    lax_ident,
    ident,
    ns_ident,
    lax_ns_ident,
    maybe_ty,
    union_ty,
    simple_ty,
    ty,
    namespace_name,
    path,
    enum_case,
    enum_ty,
    variant_case,
    variant_param,
    variant_ty,
    byte_size,
    fixed_ty,
    record,
    record_prop,
    namespace_annotation,
    generic_annotation,
    lint,
    typedef,
    namespace,
    import,
    interface_fn_param,
    interface_fn_params,
    interface_fn,
    protocol_body,
    protocol_name,
    protocol,
    avdl_protocol,
}

Variants

alphadigitwhitespacenewlinewhitespacesWHITESPACEcommentCOMMENTlax_identidentns_identlax_ns_identmaybe_tyunion_tysimple_tytynamespace_namepathenum_caseenum_tyvariant_casevariant_paramvariant_tybyte_sizefixed_tyrecordrecord_propnamespace_annotationgeneric_annotationlinttypedefnamespaceimportinterface_fn_paraminterface_fn_paramsinterface_fnprotocol_bodyprotocol_nameprotocolavdl_protocol

Trait Implementations

impl Eq for Rule[src]

impl Clone for Rule[src]

impl PartialOrd<Rule> for Rule[src]

impl Ord for Rule[src]

impl PartialEq<Rule> for Rule[src]

impl Copy for Rule[src]

impl Hash for Rule[src]

impl Debug for Rule[src]

impl Parser<Rule> for AVDLParser[src]

Auto Trait Implementations

impl Unpin for Rule

impl Sync for Rule

impl Send for Rule

impl UnwindSafe for Rule

impl RefUnwindSafe for Rule

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for 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.

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

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

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

impl<T> RuleType for T where
    T: Copy + Eq + Ord + Hash + Debug
[src]