pub struct ObjCMethod {
pub name: String,
pub types: String,
pub imp: u64,
}Fields§
§name: String§types: String§imp: u64Implementations§
Source§impl ObjCMethod
impl ObjCMethod
pub fn parse_small<T: Read + Seek>( macho: &mut MachO<T>, offset: u64, ) -> MachOResult<ObjCMethod>
pub fn parse_normal<T: Read + Seek>( macho: &mut MachO<T>, offset: u64, ) -> MachOResult<ObjCMethod>
Trait Implementations§
Source§impl Clone for ObjCMethod
impl Clone for ObjCMethod
Source§fn clone(&self) -> ObjCMethod
fn clone(&self) -> ObjCMethod
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ObjCMethod
impl RefUnwindSafe for ObjCMethod
impl Send for ObjCMethod
impl Sync for ObjCMethod
impl Unpin for ObjCMethod
impl UnsafeUnpin for ObjCMethod
impl UnwindSafe for ObjCMethod
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