pub enum SegmentLeaderboardEntry {
    MessageIndex(Field<MessageIndex>),
    Name(Field<Utf8String>),
    Type(Field<SegmentLeaderboardType>),
    GroupPrimaryKey(Field<Uint32>),
    ActivityId(Field<Uint32>),
    SegmentTime(Field<Uint32>),
    ActivityIdString(Field<Utf8String>),
    Unknown {
        data: Vec<u8>,
        field_def_num: u8,
    },
}
Expand description

Unique Identification data for an individual segment leader within a segment file

Variants

MessageIndex(Field<MessageIndex>)

Name(Field<Utf8String>)

Friendly name assigned to leader

Type(Field<SegmentLeaderboardType>)

Leader classification

GroupPrimaryKey(Field<Uint32>)

Primary user ID of this leader

ActivityId(Field<Uint32>)

ID of the activity associated with this leader time

SegmentTime(Field<Uint32>)

Segment Time (includes pauses)

ActivityIdString(Field<Utf8String>)

String version of the activity_id. 21 characters long, express in decimal

Unknown

Fields

data: Vec<u8>
field_def_num: u8

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.