pub struct CompileScriptReturnObjectBuilder { /* private fields */ }Expand description
Builder for CompileScriptReturnObject.
Implementations§
Source§impl CompileScriptReturnObjectBuilder
impl CompileScriptReturnObjectBuilder
Sourcepub fn exception_details(
&mut self,
value: Option<ExceptionDetails>,
) -> &mut Self
pub fn exception_details( &mut self, value: Option<ExceptionDetails>, ) -> &mut Self
Exception details.
Sourcepub fn build(
&self,
) -> Result<CompileScriptReturnObject, CompileScriptReturnObjectBuilderError>
pub fn build( &self, ) -> Result<CompileScriptReturnObject, CompileScriptReturnObjectBuilderError>
Trait Implementations§
Source§impl Clone for CompileScriptReturnObjectBuilder
impl Clone for CompileScriptReturnObjectBuilder
Source§fn clone(&self) -> CompileScriptReturnObjectBuilder
fn clone(&self) -> CompileScriptReturnObjectBuilder
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 moreAuto Trait Implementations§
impl Freeze for CompileScriptReturnObjectBuilder
impl RefUnwindSafe for CompileScriptReturnObjectBuilder
impl Send for CompileScriptReturnObjectBuilder
impl Sync for CompileScriptReturnObjectBuilder
impl Unpin for CompileScriptReturnObjectBuilder
impl UnsafeUnpin for CompileScriptReturnObjectBuilder
impl UnwindSafe for CompileScriptReturnObjectBuilder
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