Enum actix_tools::sentry::sentry_client::protocol::DebugImage [−]
pub enum DebugImage {
Apple(AppleDebugImage),
Symbolic(SymbolicDebugImage),
Proguard(ProguardDebugImage),
Unknown(LinkedHashMap<String, Value, RandomState>),
}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.
Unknown(LinkedHashMap<String, Value, RandomState>)A debug image that is unknown to this protocol specification.
Methods
impl DebugImage
impl DebugImageTrait Implementations
impl Serialize for DebugImage
impl Serialize for DebugImagefn 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 Clone for DebugImage
impl Clone for DebugImagefn clone(&self) -> DebugImage
fn clone(&self) -> DebugImageReturns 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)1.0.0
[src]Performs copy-assignment from source. Read more
impl Debug for DebugImage
impl Debug for DebugImagefn 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<'de> Deserialize<'de> for DebugImage
impl<'de> Deserialize<'de> for DebugImagefn 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
impl PartialEq<DebugImage> for DebugImage
impl PartialEq<DebugImage> for DebugImagefn eq(&self, other: &DebugImage) -> bool
fn eq(&self, other: &DebugImage) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &DebugImage) -> bool
fn ne(&self, other: &DebugImage) -> boolThis method tests for !=.
impl From<SymbolicDebugImage> for DebugImage
impl From<SymbolicDebugImage> for DebugImagefn from(data: SymbolicDebugImage) -> DebugImage
fn from(data: SymbolicDebugImage) -> DebugImagePerforms the conversion.
impl From<AppleDebugImage> for DebugImage
impl From<AppleDebugImage> for DebugImagefn from(data: AppleDebugImage) -> DebugImage
fn from(data: AppleDebugImage) -> DebugImagePerforms the conversion.
impl From<ProguardDebugImage> for DebugImage
impl From<ProguardDebugImage> for DebugImagefn from(data: ProguardDebugImage) -> DebugImage
fn from(data: ProguardDebugImage) -> DebugImagePerforms the conversion.
Auto Trait Implementations
impl Send for DebugImage
impl Send for DebugImageimpl Sync for DebugImage
impl Sync for DebugImage