Struct symbolic_debuginfo::ObjectId [] [src]

pub struct ObjectId { /* fields omitted */ }

Unique identifier for Object files and their debug information.

Methods

impl ObjectId
[src]

[src]

Parses a ObjectId from a formatted String.

The string must be between 33 and 40 characters long and consist of: 1. A 32 character uppercase hex representation of the UUID field 2. A 1-8 character lowercase hex representation of the u32 age field

[src]

Constructs a ObjectId from its uuid.

[src]

Constructs a ObjectId from its uuid and age parts.

[src]

Returns the UUID part of the code module's debug_identifier.

[src]

Returns the age part of the code module's debug identifier.

On Windows, this is an incrementing counter to identify the build. On all other platforms, this value will always be zero.

Trait Implementations

impl Debug for ObjectId
[src]

[src]

Formats the value using the given formatter.

impl Default for ObjectId
[src]

[src]

Returns the "default value" for a type. Read more

impl Eq for ObjectId
[src]

impl PartialEq for ObjectId
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Ord for ObjectId
[src]

[src]

This method returns an Ordering between self and other. Read more

1.22.0
[src]

Compares and returns the maximum of two values. Read more

1.22.0
[src]

Compares and returns the minimum of two values. Read more

impl PartialOrd for ObjectId
[src]

[src]

This method returns an ordering between self and other values if one exists. Read more

[src]

This method tests less than (for self and other) and is used by the < operator. Read more

[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Hash for ObjectId
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Clone for ObjectId
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for ObjectId
[src]

impl Display for ObjectId
[src]

[src]

Formats the value using the given formatter. Read more

impl From<Uuid> for ObjectId
[src]

[src]

Performs the conversion.