pub struct DebugSymbols { /* private fields */ }Available on crate features
Debugger and Runtime only.Expand description
Debug symbols available for a wasm script.
Implementations§
Source§impl DebugSymbols
impl DebugSymbols
pub fn new(type: DebugSymbolsType, external_url: Option<String>) -> Self
Sourcepub fn type(&self) -> &DebugSymbolsType
pub fn type(&self) -> &DebugSymbolsType
Type of the debug symbols.
Sourcepub fn external_url(&self) -> Option<&String>
pub fn external_url(&self) -> Option<&String>
URL of the external symbol source.
Trait Implementations§
Source§impl Clone for DebugSymbols
impl Clone for DebugSymbols
Source§fn clone(&self) -> DebugSymbols
fn clone(&self) -> DebugSymbols
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 DebugSymbols
impl Debug for DebugSymbols
Source§impl<'de> Deserialize<'de> for DebugSymbols
impl<'de> Deserialize<'de> for DebugSymbols
Source§fn 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
Auto Trait Implementations§
impl Freeze for DebugSymbols
impl RefUnwindSafe for DebugSymbols
impl Send for DebugSymbols
impl Sync for DebugSymbols
impl Unpin for DebugSymbols
impl UnwindSafe for DebugSymbols
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