pub struct CallArgument {
pub value: Option<Value>,
pub unserializable_value: Option<String>,
pub object_id: Option<String>,
}Expand description
Call argument for callFunctionOn.
Fields§
§value: Option<Value>Primitive value or serializable javascript object.
unserializable_value: Option<String>Primitive value which can not be JSON-stringified does not have value.
object_id: Option<String>Remote object handle.
Trait Implementations§
Source§impl Clone for CallArgument
impl Clone for CallArgument
Source§fn clone(&self) -> CallArgument
fn clone(&self) -> CallArgument
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 CallArgument
impl Debug for CallArgument
Auto Trait Implementations§
impl Freeze for CallArgument
impl RefUnwindSafe for CallArgument
impl Send for CallArgument
impl Sync for CallArgument
impl Unpin for CallArgument
impl UnwindSafe for CallArgument
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