Enum dynasmrt::LabelKind [−][src]
pub enum LabelKind {
Local(&'static str),
Global(&'static str),
Dynamic(DynamicLabel),
}
Expand description
A description of a label. Used for error reporting.
Variants
Local(&'static str)
A local label, like label:
Tuple Fields of Local
0: &'static str
Global(&'static str)
A global label, like ->label:
Tuple Fields of Global
0: &'static str
Dynamic(DynamicLabel)
A dynamic label, like =>value:
Tuple Fields of Dynamic
0: DynamicLabel
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for LabelKind
impl UnwindSafe for LabelKind
Blanket Implementations
Mutably borrows from an owned value. Read more