Enum relay_event_schema::protocol::DebugImage
source · pub enum DebugImage {
Apple(Box<AppleDebugImage>),
Symbolic(Box<NativeDebugImage>),
MachO(Box<NativeDebugImage>),
Elf(Box<NativeDebugImage>),
Pe(Box<NativeDebugImage>),
PeDotnet(Box<NativeDebugImage>),
Proguard(Box<ProguardDebugImage>),
Wasm(Box<NativeDebugImage>),
SourceMap(Box<SourceMapDebugImage>),
Jvm(Box<JvmDebugImage>),
Other(Object<Value>),
}
Expand description
A debug information file (debug image).
Variants§
Apple(Box<AppleDebugImage>)
Legacy apple debug images (MachO).
Symbolic(Box<NativeDebugImage>)
A generic (new-style) native platform debug information file.
MachO(Box<NativeDebugImage>)
MachO (macOS and iOS) debug image.
Elf(Box<NativeDebugImage>)
ELF (Linux) debug image.
Pe(Box<NativeDebugImage>)
PE (Windows) debug image.
PeDotnet(Box<NativeDebugImage>)
.NET PE debug image with associated Portable PDB debug companion.
Proguard(Box<ProguardDebugImage>)
A reference to a proguard debug file.
Wasm(Box<NativeDebugImage>)
WASM debug image.
SourceMap(Box<SourceMapDebugImage>)
Source map debug image.
Jvm(Box<JvmDebugImage>)
JVM based debug image.
Other(Object<Value>)
A debug image that is unknown to this protocol specification.
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 Empty for DebugImage
impl Empty for DebugImage
source§impl FromValue for DebugImage
impl FromValue for DebugImage
source§fn from_value(__value: Annotated<Value>) -> Annotated<Self>
fn from_value(__value: Annotated<Value>) -> Annotated<Self>
Creates a meta structure from an annotated boxed value.
source§impl IntoValue for DebugImage
impl IntoValue for DebugImage
source§fn into_value(self) -> Value
fn into_value(self) -> Value
Boxes the meta structure back into a value.
source§fn serialize_payload<S>(
&self,
__serializer: S,
__behavior: SkipSerialization,
) -> Result<S::Ok, S::Error>where
S: Serializer,
fn serialize_payload<S>(
&self,
__serializer: S,
__behavior: SkipSerialization,
) -> Result<S::Ok, S::Error>where
S: Serializer,
Efficiently serializes the payload directly.
source§fn extract_child_meta(&self) -> MetaMapwhere
Self: Sized,
fn extract_child_meta(&self) -> MetaMapwhere
Self: Sized,
Extracts children meta map out of a value.
§fn extract_meta_tree(value: &Annotated<Self>) -> MetaTreewhere
Self: Sized,
fn extract_meta_tree(value: &Annotated<Self>) -> MetaTreewhere
Self: Sized,
Extracts the meta tree out of annotated value. Read more
source§impl PartialEq for DebugImage
impl PartialEq for DebugImage
source§impl ProcessValue for DebugImage
impl ProcessValue for DebugImage
source§fn value_type(&self) -> EnumSet<ValueType>
fn value_type(&self) -> EnumSet<ValueType>
Returns the type of the value.
source§fn process_value<P>(
&mut self,
__meta: &mut Meta,
__processor: &mut P,
__state: &ProcessingState<'_>,
) -> ProcessingResultwhere
P: Processor,
fn process_value<P>(
&mut self,
__meta: &mut Meta,
__processor: &mut P,
__state: &ProcessingState<'_>,
) -> ProcessingResultwhere
P: Processor,
Executes a processor on this value.
source§fn process_child_values<P>(
&mut self,
__processor: &mut P,
__state: &ProcessingState<'_>,
) -> ProcessingResultwhere
P: Processor,
fn process_child_values<P>(
&mut self,
__processor: &mut P,
__state: &ProcessingState<'_>,
) -> ProcessingResultwhere
P: Processor,
Recurses into children of this value.
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)