pub struct CallFunctionOnReturnObjectBuilder { /* private fields */ }Expand description
Builder for CallFunctionOnReturnObject.
Implementations§
Source§impl CallFunctionOnReturnObjectBuilder
impl CallFunctionOnReturnObjectBuilder
Sourcepub fn result(&mut self, value: RemoteObject) -> &mut Self
pub fn result(&mut self, value: RemoteObject) -> &mut Self
Call result.
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<CallFunctionOnReturnObject, CallFunctionOnReturnObjectBuilderError>
pub fn build( &self, ) -> Result<CallFunctionOnReturnObject, CallFunctionOnReturnObjectBuilderError>
Trait Implementations§
Source§impl Clone for CallFunctionOnReturnObjectBuilder
impl Clone for CallFunctionOnReturnObjectBuilder
Source§fn clone(&self) -> CallFunctionOnReturnObjectBuilder
fn clone(&self) -> CallFunctionOnReturnObjectBuilder
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 CallFunctionOnReturnObjectBuilder
impl RefUnwindSafe for CallFunctionOnReturnObjectBuilder
impl Send for CallFunctionOnReturnObjectBuilder
impl Sync for CallFunctionOnReturnObjectBuilder
impl Unpin for CallFunctionOnReturnObjectBuilder
impl UnsafeUnpin for CallFunctionOnReturnObjectBuilder
impl UnwindSafe for CallFunctionOnReturnObjectBuilder
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