extern structstd.macho.SuperBlob[src]

This structure is followed by GenericBlobs in no particular order as indicated by offsets in index

Fields

magic: u32

Magic number

length: u32

Total length of SuperBlob

count: u32

Number of index BlobIndex entries following this struct

Source Code

Source code
pub const SuperBlob = extern struct {
    /// Magic number
    magic: u32,

    /// Total length of SuperBlob
    length: u32,

    /// Number of index BlobIndex entries following this struct
    count: u32,
}