Enum sentry_types::protocol::v7::DebugImage
source · [−]pub enum DebugImage {
Apple(AppleDebugImage),
Symbolic(SymbolicDebugImage),
Proguard(ProguardDebugImage),
}Expand description
Represents a debug image.
Variants
Apple(AppleDebugImage)
Apple debug images (machos). This is currently also used for non apple platforms with similar debug setups.
Symbolic(SymbolicDebugImage)
Symbolic (new style) debug infos.
Proguard(ProguardDebugImage)
A reference to a proguard debug file.
Implementations
sourceimpl DebugImage
impl DebugImage
Trait Implementations
sourceimpl Clone for DebugImage
impl Clone for DebugImage
sourcefn clone(&self) -> DebugImage
fn clone(&self) -> DebugImage
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for DebugImage
impl Debug for DebugImage
sourceimpl<'de> Deserialize<'de> for DebugImage
impl<'de> Deserialize<'de> for DebugImage
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl From<AppleDebugImage> for DebugImage
impl From<AppleDebugImage> for DebugImage
sourcefn from(data: AppleDebugImage) -> DebugImage
fn from(data: AppleDebugImage) -> DebugImage
Performs the conversion.
sourceimpl From<ProguardDebugImage> for DebugImage
impl From<ProguardDebugImage> for DebugImage
sourcefn from(data: ProguardDebugImage) -> DebugImage
fn from(data: ProguardDebugImage) -> DebugImage
Performs the conversion.
sourceimpl From<SymbolicDebugImage> for DebugImage
impl From<SymbolicDebugImage> for DebugImage
sourcefn from(data: SymbolicDebugImage) -> DebugImage
fn from(data: SymbolicDebugImage) -> DebugImage
Performs the conversion.
sourceimpl PartialEq<DebugImage> for DebugImage
impl PartialEq<DebugImage> for DebugImage
sourcefn eq(&self, other: &DebugImage) -> bool
fn eq(&self, other: &DebugImage) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &DebugImage) -> bool
fn ne(&self, other: &DebugImage) -> bool
This method tests for !=.
sourceimpl Serialize for DebugImage
impl Serialize for DebugImage
impl StructuralPartialEq for DebugImage
Auto Trait Implementations
impl RefUnwindSafe for DebugImage
impl Send for DebugImage
impl Sync for DebugImage
impl Unpin for DebugImage
impl UnwindSafe for DebugImage
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more