Enum sentry_core::protocol::DebugImage  
source · pub enum DebugImage {
    Apple(AppleDebugImage),
    Symbolic(SymbolicDebugImage),
    Proguard(ProguardDebugImage),
    Wasm(WasmDebugImage),
}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.
Wasm(WasmDebugImage)
Image used for WebAssembly. Their structure is identical to other native images.
Implementations§
Trait Implementations§
source§impl Clone for DebugImage
 
impl Clone for DebugImage
source§fn clone(&self) -> DebugImage
 
fn clone(&self) -> DebugImage
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresource§impl Debug for DebugImage
 
impl Debug for DebugImage
source§impl<'de> Deserialize<'de> for DebugImage
 
impl<'de> Deserialize<'de> for DebugImage
source§fn deserialize<__D>(
    __deserializer: __D
) -> Result<DebugImage, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(
    __deserializer: __D
) -> Result<DebugImage, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<AppleDebugImage> for DebugImage
 
impl From<AppleDebugImage> for DebugImage
source§fn from(data: AppleDebugImage) -> DebugImage
 
fn from(data: AppleDebugImage) -> DebugImage
Converts to this type from the input type.
source§impl From<ProguardDebugImage> for DebugImage
 
impl From<ProguardDebugImage> for DebugImage
source§fn from(data: ProguardDebugImage) -> DebugImage
 
fn from(data: ProguardDebugImage) -> DebugImage
Converts to this type from the input type.
source§impl From<SymbolicDebugImage> for DebugImage
 
impl From<SymbolicDebugImage> for DebugImage
source§fn from(data: SymbolicDebugImage) -> DebugImage
 
fn from(data: SymbolicDebugImage) -> DebugImage
Converts to this type from the input type.
source§impl From<WasmDebugImage> for DebugImage
 
impl From<WasmDebugImage> for DebugImage
source§fn from(data: WasmDebugImage) -> DebugImage
 
fn from(data: WasmDebugImage) -> DebugImage
Converts to this type from the input type.
source§impl PartialEq for DebugImage
 
impl PartialEq for DebugImage
source§fn 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 ==.source§impl Serialize for DebugImage
 
impl Serialize for DebugImage
source§fn 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 StructuralPartialEq for DebugImage
Auto Trait Implementations§
impl Freeze for DebugImage
impl RefUnwindSafe for DebugImage
impl Send for DebugImage
impl Sync for DebugImage
impl Unpin for DebugImage
impl UnwindSafe for DebugImage
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more