pub struct Sym<'a> {
pub kind: SymKind,
pub data: &'a [u8],
}
Expand description
Points to one symbol record in memory and gives its kind.
Fields§
§kind: SymKind
The kind of the symbol.
data: &'a [u8]
The contents of the record. This slice does not include the len
or kind
fields.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Sym<'a>
impl<'a> RefUnwindSafe for Sym<'a>
impl<'a> Send for Sym<'a>
impl<'a> Sync for Sym<'a>
impl<'a> Unpin for Sym<'a>
impl<'a> UnwindSafe for Sym<'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