pub enum DwarfDirectiveKind {
ByteValues(Vec<u8>),
FourByteValues(Vec<u32>),
QuadValues(Vec<u64>),
FourByteLabel(Label),
QuadLabel(Label),
}Variants§
ByteValues(Vec<u8>)
FourByteValues(Vec<u32>)
QuadValues(Vec<u64>)
FourByteLabel(Label)
QuadLabel(Label)
Trait Implementations§
Source§impl Clone for DwarfDirectiveKind
impl Clone for DwarfDirectiveKind
Source§fn clone(&self) -> DwarfDirectiveKind
fn clone(&self) -> DwarfDirectiveKind
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DwarfDirectiveKind
impl Debug for DwarfDirectiveKind
Source§impl PartialEq for DwarfDirectiveKind
impl PartialEq for DwarfDirectiveKind
impl StructuralPartialEq for DwarfDirectiveKind
Auto Trait Implementations§
impl Freeze for DwarfDirectiveKind
impl RefUnwindSafe for DwarfDirectiveKind
impl Send for DwarfDirectiveKind
impl Sync for DwarfDirectiveKind
impl Unpin for DwarfDirectiveKind
impl UnwindSafe for DwarfDirectiveKind
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