pub struct DwarfDirective {
pub keyword: String,
pub arguments: Vec<String>,
pub comment: Option<String>,
pub raw: String,
}Expand description
Raw dwarf directive emitted by the compiler (e.g. @@dwarf).
Fields§
§keyword: String§arguments: Vec<String>§comment: Option<String>§raw: StringTrait Implementations§
Source§impl Clone for DwarfDirective
impl Clone for DwarfDirective
Source§fn clone(&self) -> DwarfDirective
fn clone(&self) -> DwarfDirective
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 DwarfDirective
impl Debug for DwarfDirective
Source§impl PartialEq for DwarfDirective
impl PartialEq for DwarfDirective
impl Eq for DwarfDirective
impl StructuralPartialEq for DwarfDirective
Auto Trait Implementations§
impl Freeze for DwarfDirective
impl RefUnwindSafe for DwarfDirective
impl Send for DwarfDirective
impl Sync for DwarfDirective
impl Unpin for DwarfDirective
impl UnwindSafe for DwarfDirective
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