Struct actix_tools::sentry::sentry_client::protocol::debugid::DebugId [−]
#[repr(C, packed)]pub struct DebugId { /* fields omitted */ }
Unique identifier for debug information files and their debug information.
The string representation must be between 33 and 40 characters long and consist of:
- 36 character hyphenated hex representation of the UUID field
- 1-16 character lowercase hex representation of the u64 appendix
Example:
use std::str::FromStr; use debugid::DebugId; let id = DebugId::from_str("dfb8e43a-f242-3d73-a453-aeb6a777ef75-a")?; assert_eq!("dfb8e43a-f242-3d73-a453-aeb6a777ef75-a".to_string(), id.to_string());
Methods
impl DebugId
impl DebugIdpub fn from_uuid(uuid: Uuid) -> DebugId
pub fn from_uuid(uuid: Uuid) -> DebugIdConstructs a DebugId from its uuid.
pub fn from_parts(uuid: Uuid, appendix: u32) -> DebugId
pub fn from_parts(uuid: Uuid, appendix: u32) -> DebugIdConstructs a DebugId from its uuid and appendix parts.
pub fn from_breakpad(string: &str) -> Result<DebugId, ParseDebugIdError>
pub fn from_breakpad(string: &str) -> Result<DebugId, ParseDebugIdError>Parses a breakpad identifier from a string.
pub fn uuid(&self) -> Uuid
pub fn uuid(&self) -> UuidReturns the UUID part of the code module's debug_identifier.
pub fn appendix(&self) -> u32
pub fn appendix(&self) -> u32Returns the appendix 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.
pub fn breakpad(&self) -> BreakpadFormat
pub fn breakpad(&self) -> BreakpadFormatReturns a wrapper which when formatted via fmt::Display will format a
a breakpad identifier.
Trait Implementations
impl PartialOrd<DebugId> for DebugId
impl PartialOrd<DebugId> for DebugIdfn partial_cmp(&self, other: &DebugId) -> Option<Ordering>
fn partial_cmp(&self, other: &DebugId) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &DebugId) -> bool
fn lt(&self, other: &DebugId) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &DebugId) -> bool
fn le(&self, other: &DebugId) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &DebugId) -> bool
fn gt(&self, other: &DebugId) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &DebugId) -> bool
fn ge(&self, other: &DebugId) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl<'de> Deserialize<'de> for DebugId
impl<'de> Deserialize<'de> for DebugIdfn deserialize<D>(
deserializer: D
) -> Result<DebugId, <D as Deserializer<'de>>::Error> where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D
) -> Result<DebugId, <D as Deserializer<'de>>::Error> where
D: Deserializer<'de>, Deserialize this value from the given Serde deserializer. Read more
impl Hash for DebugId
impl Hash for DebugIdfn hash<__H>(&self, state: &mut __H) where
__H: Hasher,
fn hash<__H>(&self, state: &mut __H) where
__H: Hasher, Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, Feeds a slice of this type into the given [Hasher]. Read more
impl Serialize for DebugId
impl Serialize for DebugIdfn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
S: Serializer,
fn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
S: Serializer, Serialize this value into the given Serde serializer. Read more
impl Display for DebugId
impl Display for DebugIdfn fmt(&self, f: &mut Formatter) -> Result<(), Error>
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>Formats the value using the given formatter. Read more
impl Clone for DebugId
impl Clone for DebugIdfn clone(&self) -> DebugId
fn clone(&self) -> DebugIdReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl FromStr for DebugId
impl FromStr for DebugIdtype Err = ParseDebugIdError
The associated error which can be returned from parsing.
fn from_str(string: &str) -> Result<DebugId, ParseDebugIdError>
fn from_str(string: &str) -> Result<DebugId, ParseDebugIdError>Parses a string s to return a value of this type. Read more
impl Default for DebugId
impl Default for DebugIdimpl Debug for DebugId
impl Debug for DebugIdfn fmt(&self, f: &mut Formatter) -> Result<(), Error>
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>Formats the value using the given formatter. Read more
impl Copy for DebugId
impl Copy for DebugIdimpl Ord for DebugId
impl Ord for DebugIdfn cmp(&self, other: &DebugId) -> Ordering
fn cmp(&self, other: &DebugId) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl Eq for DebugId
impl Eq for DebugIdimpl PartialEq<DebugId> for DebugId
impl PartialEq<DebugId> for DebugIdfn eq(&self, other: &DebugId) -> bool
fn eq(&self, other: &DebugId) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &DebugId) -> bool
fn ne(&self, other: &DebugId) -> boolThis method tests for !=.
impl From<Uuid> for DebugId
impl From<Uuid> for DebugIdimpl From<(Uuid, u32)> for DebugId
impl From<(Uuid, u32)> for DebugId