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 duplicate 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