pub struct RelocationInfo {
pub offset: usize,
pub reloc_type: RelocationType,
pub symbol: String,
}Expand description
重定位信息
Fields§
§offset: usize重定位位置
reloc_type: RelocationType重定位类型
symbol: String目标符号
Trait Implementations§
Source§impl Clone for RelocationInfo
impl Clone for RelocationInfo
Source§fn clone(&self) -> RelocationInfo
fn clone(&self) -> RelocationInfo
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 moreAuto Trait Implementations§
impl Freeze for RelocationInfo
impl RefUnwindSafe for RelocationInfo
impl Send for RelocationInfo
impl Sync for RelocationInfo
impl Unpin for RelocationInfo
impl UnwindSafe for RelocationInfo
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