Binary Raw - Docs
    Preparing search index...

    Interface ParsedStructure

    Represents a fully parsed binary file with its structure and metadata.

    interface ParsedStructure {
        entryPoint: VirtualAddress | undefined;
        format: FileFormat;
        formatMeta: FormatMetadata;
        root: SectionNode;
        totalSize: ByteCount;
    }
    Index

    Properties

    entryPoint: VirtualAddress | undefined

    Entry point virtual address (if applicable).

    format: FileFormat

    The detected file format.

    formatMeta: FormatMetadata

    Format-specific metadata extracted during parsing.

    The root section node of the hierarchical structure.

    totalSize: ByteCount

    Total size of the file in bytes.