[−][src]Struct sentry_types::CodeId
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 AsRef<str> for CodeId
[src]
impl Clone for CodeId
[src]
impl Debug for CodeId
[src]
impl Default for CodeId
[src]
impl<'de> Deserialize<'de> for CodeId
[src]
fn deserialize<D>(
deserializer: D
) -> Result<CodeId, <D as Deserializer<'de>>::Error> where
D: Deserializer<'de>,
[src]
deserializer: D
) -> Result<CodeId, <D as Deserializer<'de>>::Error> where
D: Deserializer<'de>,
impl Display for CodeId
[src]
impl Eq for CodeId
[src]
impl<'_> From<&'_ str> for CodeId
[src]
impl From<String> for CodeId
[src]
impl FromStr for CodeId
[src]
type Err = ParseCodeIdError
The associated error which can be returned from parsing.
fn from_str(string: &str) -> Result<CodeId, ParseCodeIdError>
[src]
impl Hash for CodeId
[src]
fn hash<__H>(&self, state: &mut __H) where
__H: Hasher,
[src]
__H: Hasher,
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl Ord for CodeId
[src]
fn cmp(&self, other: &CodeId) -> Ordering
[src]
#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
[src]
impl PartialEq<CodeId> for CodeId
[src]
impl PartialOrd<CodeId> for CodeId
[src]
fn partial_cmp(&self, other: &CodeId) -> Option<Ordering>
[src]
fn lt(&self, other: &CodeId) -> bool
[src]
fn le(&self, other: &CodeId) -> bool
[src]
fn gt(&self, other: &CodeId) -> bool
[src]
fn ge(&self, other: &CodeId) -> bool
[src]
impl Serialize for CodeId
[src]
fn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
S: Serializer,
[src]
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
S: Serializer,
impl StructuralEq for CodeId
[src]
impl StructuralPartialEq for CodeId
[src]
Auto Trait Implementations
impl RefUnwindSafe for CodeId
impl Send for CodeId
impl Sync for CodeId
impl Unpin for CodeId
impl UnwindSafe for CodeId
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,