pub struct LinkEditData {
pub off: u32,
pub size: u32,
}Expand description
The LinkEditData contains the offsets and sizes of a blob
of data in the __LINKEDIT segment.
Fields§
§off: u32file offset of data in __LINKEDIT segment
size: u32file size of data in __LINKEDIT segment
Trait Implementations§
Source§impl Clone for LinkEditData
impl Clone for LinkEditData
Source§fn clone(&self) -> LinkEditData
fn clone(&self) -> LinkEditData
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 LinkEditData
impl Debug for LinkEditData
Source§impl Default for LinkEditData
impl Default for LinkEditData
Source§fn default() -> LinkEditData
fn default() -> LinkEditData
Returns the “default value” for a type. Read more
Source§impl PartialEq for LinkEditData
impl PartialEq for LinkEditData
impl Eq for LinkEditData
impl StructuralPartialEq for LinkEditData
Auto Trait Implementations§
impl Freeze for LinkEditData
impl RefUnwindSafe for LinkEditData
impl Send for LinkEditData
impl Sync for LinkEditData
impl Unpin for LinkEditData
impl UnwindSafe for LinkEditData
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