[][src]Struct sentry_types::CodeId

pub struct CodeId { /* fields omitted */ }

Unique platform-dependent identifier of code files.

This identifier assumes a string representation that depends on the platform and compiler used. The representation only retains hex characters and canonically stores lower case.

There are the following known formats:

  • MachO UUID: The unique identifier of a Mach binary, specified in the LC_UUID load command header.
  • GNU Build ID: Contents of the .gnu.build-id note or section contents formatted as lowercase hex string.
  • PE Timestamp: Timestamp and size of image values from a Windows PE header. The size of image value is truncated, so the length of the CodeId might not be a multiple of 2.

Methods

impl CodeId[src]

pub fn nil() -> CodeId[src]

Constructs an empty code identifier.

pub fn new(string: String) -> CodeId[src]

Constructs a CodeId from its string representation.

pub fn from_binary(slice: &[u8]) -> CodeId[src]

Constructs a CodeId from a binary slice.

pub fn is_nil(&self) -> bool[src]

Returns whether this identifier is nil, i.e. it is empty.

pub fn as_str(&self) -> &str[src]

Returns the string representation of this code identifier.

Trait Implementations

impl PartialEq<CodeId> for CodeId[src]

impl Ord for CodeId[src]

impl Clone for CodeId[src]

impl Display for CodeId[src]

impl FromStr for CodeId[src]

type Err = ParseCodeIdError

The associated error which can be returned from parsing.

impl StructuralEq for CodeId[src]

impl Eq for CodeId[src]

impl Default for CodeId[src]

impl PartialOrd<CodeId> for CodeId[src]

impl Serialize for CodeId[src]

impl<'de> Deserialize<'de> for CodeId[src]

impl<'_> From<&'_ str> for CodeId[src]

impl From<String> for CodeId[src]

impl Debug for CodeId[src]

impl AsRef<str> for CodeId[src]

impl Hash for CodeId[src]

impl StructuralPartialEq for CodeId[src]

Auto Trait Implementations

impl Send for CodeId

impl Sync for CodeId

impl Unpin for CodeId

impl UnwindSafe for CodeId

impl RefUnwindSafe for CodeId

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,