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: String
The name of the debug image (usually filename)
debug_id: Uuid
Identifier 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: String
The absolute URL to the wasm file. This helps to locate the file if it is missing on Sentry.
Trait Implementations
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<WasmDebugImage, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
pub 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
Performs the conversion.
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
pub 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
Auto Trait Implementations
impl RefUnwindSafe for WasmDebugImage
impl Send for WasmDebugImage
impl Sync for WasmDebugImage
impl Unpin for WasmDebugImage
impl UnwindSafe for WasmDebugImage
Blanket Implementations
Mutably borrows from an owned value. Read more