Struct relay_event_schema::protocol::AppleDebugImage
source · pub struct AppleDebugImage {
pub name: Annotated<String>,
pub arch: Annotated<String>,
pub cpu_type: Annotated<u64>,
pub cpu_subtype: Annotated<u64>,
pub image_addr: Annotated<Addr>,
pub image_size: Annotated<u64>,
pub image_vmaddr: Annotated<Addr>,
pub uuid: Annotated<Uuid>,
pub other: Object<Value>,
}
Expand description
Legacy apple debug images (MachO).
This was also used for non-apple platforms with similar debug setups.
Fields§
§name: Annotated<String>
Path and name of the debug image (required).
arch: Annotated<String>
CPU architecture target.
cpu_type: Annotated<u64>
MachO CPU type identifier.
cpu_subtype: Annotated<u64>
MachO CPU subtype identifier.
image_addr: Annotated<Addr>
Starting memory address of the image (required).
image_size: Annotated<u64>
Size of the image in bytes (required).
image_vmaddr: Annotated<Addr>
Loading address in virtual memory.
uuid: Annotated<Uuid>
The unique UUID of the image.
other: Object<Value>
Additional arbitrary fields for forwards compatibility.
Trait Implementations§
source§impl Clone for AppleDebugImage
impl Clone for AppleDebugImage
source§fn clone(&self) -> AppleDebugImage
fn clone(&self) -> AppleDebugImage
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 AppleDebugImage
impl Debug for AppleDebugImage
source§impl Default for AppleDebugImage
impl Default for AppleDebugImage
source§fn default() -> AppleDebugImage
fn default() -> AppleDebugImage
Returns the “default value” for a type. Read more
source§impl Empty for AppleDebugImage
impl Empty for AppleDebugImage
source§impl FromValue for AppleDebugImage
impl FromValue for AppleDebugImage
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 AppleDebugImage
impl IntoValue for AppleDebugImage
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
Self: Sized,
S: Serializer,
fn serialize_payload<S>(
&self,
__serializer: S,
__behavior: SkipSerialization,
) -> Result<S::Ok, S::Error>where
Self: Sized,
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 AppleDebugImage
impl PartialEq for AppleDebugImage
source§impl ProcessValue for AppleDebugImage
impl ProcessValue for AppleDebugImage
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 AppleDebugImage
Auto Trait Implementations§
impl Freeze for AppleDebugImage
impl RefUnwindSafe for AppleDebugImage
impl Send for AppleDebugImage
impl Sync for AppleDebugImage
impl Unpin for AppleDebugImage
impl UnwindSafe for AppleDebugImage
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
)