Struct sentry::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§
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 for WasmDebugImage
impl PartialEq for WasmDebugImage
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
impl StructuralPartialEq for WasmDebugImage
Auto Trait Implementations§
impl Freeze for WasmDebugImage
impl RefUnwindSafe for WasmDebugImage
impl Send for WasmDebugImage
impl Sync for WasmDebugImage
impl Unpin for WasmDebugImage
impl UnwindSafe for WasmDebugImage
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)