Struct sentry_types::protocol::v7::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
sourceimpl Clone for WasmDebugImage
impl Clone for WasmDebugImage
sourcefn clone(&self) -> WasmDebugImage
fn clone(&self) -> WasmDebugImage
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for WasmDebugImage
impl Debug for WasmDebugImage
sourceimpl<'de> Deserialize<'de> for WasmDebugImage
impl<'de> Deserialize<'de> for WasmDebugImage
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl From<WasmDebugImage> for DebugImage
impl From<WasmDebugImage> for DebugImage
sourcefn from(data: WasmDebugImage) -> DebugImage
fn from(data: WasmDebugImage) -> DebugImage
Converts to this type from the input type.
sourceimpl PartialEq<WasmDebugImage> for WasmDebugImage
impl PartialEq<WasmDebugImage> for WasmDebugImage
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &WasmDebugImage) -> bool
fn ne(&self, other: &WasmDebugImage) -> bool
This method tests for !=
.
sourceimpl Serialize for WasmDebugImage
impl Serialize for WasmDebugImage
impl StructuralPartialEq for WasmDebugImage
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more