Enum Korok

Source
pub enum Korok<'a, 'b> {
    Crate(&'b CrateKorok<'a>),
    Enum(&'b EnumKorok<'a>),
    EnumVariant(&'b EnumVariantKorok<'a>),
    Field(&'b FieldKorok<'a>),
    Fields(&'b FieldsKorok<'a>),
    FileModule(&'b FileModuleKorok<'a>),
    Item(&'b ItemKorok<'a>),
    Module(&'b ModuleKorok<'a>),
    Root(&'b RootKorok<'a>),
    Struct(&'b StructKorok<'a>),
    UnsupportedItem(&'b UnsupportedItemKorok<'a>),
}

Variants§

§

Crate(&'b CrateKorok<'a>)

§

Enum(&'b EnumKorok<'a>)

§

EnumVariant(&'b EnumVariantKorok<'a>)

§

Field(&'b FieldKorok<'a>)

§

Fields(&'b FieldsKorok<'a>)

§

FileModule(&'b FileModuleKorok<'a>)

§

Item(&'b ItemKorok<'a>)

§

Module(&'b ModuleKorok<'a>)

§

Root(&'b RootKorok<'a>)

§

Struct(&'b StructKorok<'a>)

§

UnsupportedItem(&'b UnsupportedItemKorok<'a>)

Trait Implementations§

Source§

impl<'a, 'b> Debug for Korok<'a, 'b>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'a, 'b> From<&'b CrateKorok<'a>> for Korok<'a, 'b>

Source§

fn from(value: &'b CrateKorok<'a>) -> Self

Converts to this type from the input type.
Source§

impl<'a, 'b> From<&'b EnumKorok<'a>> for Korok<'a, 'b>

Source§

fn from(value: &'b EnumKorok<'a>) -> Self

Converts to this type from the input type.
Source§

impl<'a, 'b> From<&'b EnumVariantKorok<'a>> for Korok<'a, 'b>

Source§

fn from(value: &'b EnumVariantKorok<'a>) -> Self

Converts to this type from the input type.
Source§

impl<'a, 'b> From<&'b FieldKorok<'a>> for Korok<'a, 'b>

Source§

fn from(value: &'b FieldKorok<'a>) -> Self

Converts to this type from the input type.
Source§

impl<'a, 'b> From<&'b FieldsKorok<'a>> for Korok<'a, 'b>

Source§

fn from(value: &'b FieldsKorok<'a>) -> Self

Converts to this type from the input type.
Source§

impl<'a, 'b> From<&'b FileModuleKorok<'a>> for Korok<'a, 'b>

Source§

fn from(value: &'b FileModuleKorok<'a>) -> Self

Converts to this type from the input type.
Source§

impl<'a, 'b> From<&'b ItemKorok<'a>> for Korok<'a, 'b>

Source§

fn from(value: &'b ItemKorok<'a>) -> Self

Converts to this type from the input type.
Source§

impl<'a, 'b> From<&'b ModuleKorok<'a>> for Korok<'a, 'b>

Source§

fn from(value: &'b ModuleKorok<'a>) -> Self

Converts to this type from the input type.
Source§

impl<'a, 'b> From<&'b RootKorok<'a>> for Korok<'a, 'b>

Source§

fn from(value: &'b RootKorok<'a>) -> Self

Converts to this type from the input type.
Source§

impl<'a, 'b> From<&'b StructKorok<'a>> for Korok<'a, 'b>

Source§

fn from(value: &'b StructKorok<'a>) -> Self

Converts to this type from the input type.
Source§

impl<'a, 'b> From<&'b UnsupportedItemKorok<'a>> for Korok<'a, 'b>

Source§

fn from(value: &'b UnsupportedItemKorok<'a>) -> Self

Converts to this type from the input type.
Source§

impl<'a, 'b> PartialEq for Korok<'a, 'b>

Source§

fn eq(&self, other: &Korok<'a, 'b>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<'a, 'b> StructuralPartialEq for Korok<'a, 'b>

Auto Trait Implementations§

§

impl<'a, 'b> Freeze for Korok<'a, 'b>

§

impl<'a, 'b> RefUnwindSafe for Korok<'a, 'b>

§

impl<'a, 'b> !Send for Korok<'a, 'b>

§

impl<'a, 'b> !Sync for Korok<'a, 'b>

§

impl<'a, 'b> Unpin for Korok<'a, 'b>

§

impl<'a, 'b> UnwindSafe for Korok<'a, 'b>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<'a, T, U> TryFromFilter<'a, U> for T
where T: 'a, &'a T: TryFrom<U>,

Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.