pub struct CompileScriptResult {
pub script_id: Option<ScriptId>,
pub exception_details: Option<ExceptionDetails>,
}Fields§
§script_id: Option<ScriptId>Id of the script.
exception_details: Option<ExceptionDetails>Exception details.
Trait Implementations§
Source§impl Clone for CompileScriptResult
impl Clone for CompileScriptResult
Source§fn clone(&self) -> CompileScriptResult
fn clone(&self) -> CompileScriptResult
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 CompileScriptResult
impl Debug for CompileScriptResult
Source§impl Default for CompileScriptResult
impl Default for CompileScriptResult
Source§fn default() -> CompileScriptResult
fn default() -> CompileScriptResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CompileScriptResult
impl<'de> Deserialize<'de> for CompileScriptResult
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 CompileScriptResult
impl PartialEq for CompileScriptResult
Source§impl Serialize for CompileScriptResult
impl Serialize for CompileScriptResult
Source§impl TryFrom<Value> for CompileScriptResult
impl TryFrom<Value> for CompileScriptResult
impl StructuralPartialEq for CompileScriptResult
Auto Trait Implementations§
impl Freeze for CompileScriptResult
impl RefUnwindSafe for CompileScriptResult
impl Send for CompileScriptResult
impl Sync for CompileScriptResult
impl Unpin for CompileScriptResult
impl UnsafeUnpin for CompileScriptResult
impl UnwindSafe for CompileScriptResult
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