pub struct SetScriptSourceResult {
pub status: SetScriptSourceResultStatus,
pub exception_details: Option<ExceptionDetails>,
}Fields§
§status: SetScriptSourceResultStatusWhether the operation was successful or not. Only Ok denotes a
successful live edit while the other enum variants denote why
the live edit failed.
exception_details: Option<ExceptionDetails>Exception details if any. Only present when status is CompileError.
Trait Implementations§
Source§impl Clone for SetScriptSourceResult
impl Clone for SetScriptSourceResult
Source§fn clone(&self) -> SetScriptSourceResult
fn clone(&self) -> SetScriptSourceResult
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 SetScriptSourceResult
impl Debug for SetScriptSourceResult
Source§impl<'de> Deserialize<'de> for SetScriptSourceResult
impl<'de> Deserialize<'de> for SetScriptSourceResult
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
Source§impl PartialEq for SetScriptSourceResult
impl PartialEq for SetScriptSourceResult
Source§impl Serialize for SetScriptSourceResult
impl Serialize for SetScriptSourceResult
Source§impl TryFrom<Value> for SetScriptSourceResult
impl TryFrom<Value> for SetScriptSourceResult
impl StructuralPartialEq for SetScriptSourceResult
Auto Trait Implementations§
impl Freeze for SetScriptSourceResult
impl RefUnwindSafe for SetScriptSourceResult
impl Send for SetScriptSourceResult
impl Sync for SetScriptSourceResult
impl Unpin for SetScriptSourceResult
impl UnsafeUnpin for SetScriptSourceResult
impl UnwindSafe for SetScriptSourceResult
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