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> Freeze for TagKind<'a>
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§
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