Struct sentry_core::protocol::WasmDebugImage  
source · pub struct WasmDebugImage {
    pub name: String,
    pub debug_id: Uuid,
    pub debug_file: Option<String>,
    pub code_id: Option<String>,
    pub code_file: String,
}Expand description
Represents a WebAssembly debug image.
Fields§
§name: StringThe name of the debug image (usually filename)
debug_id: UuidIdentifier of the dynamic library or executable.
debug_file: Option<String>Name or absolute URL to the WASM file containing debug information for this image. This value might be required to retrieve debug files from certain symbol servers. This should correspond to the externalized URL pulled from the external_debug_info custom section.
code_id: Option<String>Identifier of the WASM file. It is the value of the build_id custom section formatted as HEX string.
code_file: StringThe absolute URL to the wasm file. This helps to locate the file if it is missing on Sentry.
Trait Implementations§
source§impl Clone for WasmDebugImage
 
impl Clone for WasmDebugImage
source§fn clone(&self) -> WasmDebugImage
 
fn clone(&self) -> WasmDebugImage
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 WasmDebugImage
 
impl Debug for WasmDebugImage
source§impl<'de> Deserialize<'de> for WasmDebugImage
 
impl<'de> Deserialize<'de> for WasmDebugImage
source§fn deserialize<__D>(
    __deserializer: __D
) -> Result<WasmDebugImage, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>( __deserializer: __D ) -> Result<WasmDebugImage, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
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<WasmDebugImage> for WasmDebugImage
 
impl PartialEq<WasmDebugImage> for WasmDebugImage
source§fn eq(&self, other: &WasmDebugImage) -> bool
 
fn eq(&self, other: &WasmDebugImage) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl Serialize for WasmDebugImage
 
impl Serialize for WasmDebugImage
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