class documentation

Abstract base class for a field inside of a Struct.

Method __hash__ Returns the hash for this value.
Method __init__ Initializes an instance of this class from its name and offset in the parent struct.
Method __str__ Undocumented
Property name The name of the field.
Property offset The offset of the field in its parent struct, in bytes.
Instance Variable _name Undocumented
Instance Variable _offset Undocumented
def __hash__(self):

Returns the hash for this value.

Returns
intUndocumented
def __init__(self, name, offset):

Initializes an instance of this class from its name and offset in the parent struct.

Parameters
name:strUndocumented
offset:intUndocumented
@_abstractmethod
def __str__(self):

Undocumented

Returns
strUndocumented
@property
name: str =

The name of the field.

@property
offset: int =

The offset of the field in its parent struct, in bytes.

_name =

Undocumented

_offset =

Undocumented