pub trait FatArch: Pod {
    type Word: Into<u64>;
    const MAGIC: u32;
    // Required methods
    fn cputype(&self) -> u32;
    fn cpusubtype(&self) -> u32;
    fn offset(&self) -> Self::Word;
    fn size(&self) -> Self::Word;
    fn align(&self) -> u32;
    // Provided methods
    fn architecture(&self) -> Architecture { ... }
    fn file_range(&self) -> (u64, u64) { ... }
    fn data<'data, R: ReadRef<'data>>(&self, file: R) -> Result<&'data [u8]> { ... }
}Expand description
A trait for generic access to macho::FatArch32 and macho::FatArch64.
Required Associated Constants§
Required Associated Types§
Required Methods§
fn cputype(&self) -> u32
fn cpusubtype(&self) -> u32
fn offset(&self) -> Self::Word
fn size(&self) -> Self::Word
fn align(&self) -> u32
Provided Methods§
fn architecture(&self) -> Architecture
fn file_range(&self) -> (u64, u64)
fn data<'data, R: ReadRef<'data>>(&self, file: R) -> Result<&'data [u8]>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.