This module is used for partitioning scheme detection (GPT or MBR)
Detects partitioning scheme of the source
>>> from rawdisk.scheme.common import *
>>> scheme = detect_scheme('/dev/disk1')
>>> if (scheme == SCHEME_MBR):
>>> <...>
Bases: object
Represents GPT partition table.
Bases: rawdisk.util.rawstruct.RawStruct
Represents GUID partition table header (LBA1).
Bases: rawdisk.util.rawstruct.RawStruct
Represents GPT partition entry.
Bases: rawdisk.util.rawstruct.RawStruct
Represents the Master Boot Record of the filesystem.
Bases: rawdisk.util.rawstruct.RawStruct
Represents MBR partition entry
Bases: rawdisk.util.rawstruct.RawStruct
Represents MBR partition table.