pub enum TagKind<'a> {
Import(InlineImport<'a>),
Inline(),
}
Expand description
Different kinds of tags that can be defined in a module.
Variants
Import(InlineImport<'a>)
An tag which is actually defined as an import, such as:
(tag (type 0) (import "foo" "bar"))
Inline()
A tag defined inline in the module itself
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for TagKind<'a>
impl<'a> Send for TagKind<'a>
impl<'a> Sync for TagKind<'a>
impl<'a> Unpin for TagKind<'a>
impl<'a> UnwindSafe for TagKind<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more