Struct mach_object::FvmLib [] [src]

pub struct FvmLib {
    pub name: LcString,
    pub minor_version: u32,
    pub header_addr: u32,
}

Fixed virtual memory shared libraries are identified by two things.

The target pathname (the name of the library as found for execution), and the minor version number. The address of where the headers are loaded is in header_addr. (THIS IS OBSOLETE and no longer supported).

Fields

library's target pathname

library's minor version number

library's header address

Trait Implementations

impl Debug for FvmLib
[src]

[src]

Formats the value using the given formatter.

impl Default for FvmLib
[src]

[src]

Returns the "default value" for a type. Read more

impl Clone for FvmLib
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for FvmLib
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for FvmLib
[src]