pub enum Endian {
Little,
Big,
}Expand description
Byte order used for fixed-width integers in a GSYM file.
A file records its own byte order, and both orders can be read on any host.
Conversion writes the byte order of the ELF image it read. Everything else
defaults to Little and can be changed with
GsymBuilder::endian or
TranscodeOptions.
Variants§
Implementations§
Trait Implementations§
impl Copy for Endian
impl Eq for Endian
impl StructuralPartialEq for Endian
Auto Trait Implementations§
impl Freeze for Endian
impl RefUnwindSafe for Endian
impl Send for Endian
impl Sync for Endian
impl Unpin for Endian
impl UnsafeUnpin for Endian
impl UnwindSafe for Endian
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