pub struct SetScriptSourceReturnObject {
pub call_frames: Option<Vec<CallFrame>>,
pub stack_changed: Option<bool>,
pub async_stack_trace: Option<StackTrace>,
pub async_stack_trace_id: Option<StackTraceId>,
pub status: StatusOption,
pub exception_details: Option<ExceptionDetails>,
}Fields§
§call_frames: Option<Vec<CallFrame>>§stack_changed: Option<bool>§async_stack_trace: Option<StackTrace>§async_stack_trace_id: Option<StackTraceId>§status: StatusOption§exception_details: Option<ExceptionDetails>Trait Implementations§
Source§impl Clone for SetScriptSourceReturnObject
impl Clone for SetScriptSourceReturnObject
Source§fn clone(&self) -> SetScriptSourceReturnObject
fn clone(&self) -> SetScriptSourceReturnObject
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 SetScriptSourceReturnObject
impl Debug for SetScriptSourceReturnObject
Source§impl<'de> Deserialize<'de> for SetScriptSourceReturnObject
impl<'de> Deserialize<'de> for SetScriptSourceReturnObject
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
impl StructuralPartialEq for SetScriptSourceReturnObject
Auto Trait Implementations§
impl Freeze for SetScriptSourceReturnObject
impl RefUnwindSafe for SetScriptSourceReturnObject
impl Send for SetScriptSourceReturnObject
impl Sync for SetScriptSourceReturnObject
impl Unpin for SetScriptSourceReturnObject
impl UnwindSafe for SetScriptSourceReturnObject
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