pub struct QueryObjects {
pub method: QueryObjectsMethod,
pub params: QueryObjectsParams,
}Fields§
§method: QueryObjectsMethod§params: QueryObjectsParamsImplementations§
Source§impl QueryObjects
impl QueryObjects
pub fn builder() -> QueryObjectsBuilder
Source§impl QueryObjects
impl QueryObjects
pub const IDENTIFIER: &'static str = "Runtime.queryObjects"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for QueryObjects
impl Clone for QueryObjects
Source§fn clone(&self) -> QueryObjects
fn clone(&self) -> QueryObjects
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 CommandResult for QueryObjects
impl CommandResult for QueryObjects
type Result = QueryObjectsResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for QueryObjects
impl Debug for QueryObjects
Source§impl<'de> Deserialize<'de> for QueryObjects
impl<'de> Deserialize<'de> for QueryObjects
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 From<QueryObjects> for Command
impl From<QueryObjects> for Command
Source§fn from(v: QueryObjects) -> Self
fn from(v: QueryObjects) -> Self
Converts to this type from the input type.
Source§impl From<QueryObjects> for JsProtocolCommands
impl From<QueryObjects> for JsProtocolCommands
Source§fn from(v: QueryObjects) -> Self
fn from(v: QueryObjects) -> Self
Converts to this type from the input type.
Source§impl From<QueryObjects> for RuntimeCommands
impl From<QueryObjects> for RuntimeCommands
Source§fn from(v: QueryObjects) -> Self
fn from(v: QueryObjects) -> Self
Converts to this type from the input type.
Source§impl PartialEq for QueryObjects
impl PartialEq for QueryObjects
Source§impl Serialize for QueryObjects
impl Serialize for QueryObjects
Source§impl TryFrom<Command> for QueryObjects
impl TryFrom<Command> for QueryObjects
Source§impl TryFrom<JsProtocolCommands> for QueryObjects
impl TryFrom<JsProtocolCommands> for QueryObjects
Source§type Error = JsProtocolCommands
type Error = JsProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: JsProtocolCommands,
) -> Result<Self, <QueryObjects as TryFrom<JsProtocolCommands>>::Error>
fn try_from( e: JsProtocolCommands, ) -> Result<Self, <QueryObjects as TryFrom<JsProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<RuntimeCommands> for QueryObjects
impl TryFrom<RuntimeCommands> for QueryObjects
Source§type Error = RuntimeCommands
type Error = RuntimeCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: RuntimeCommands,
) -> Result<Self, <QueryObjects as TryFrom<RuntimeCommands>>::Error>
fn try_from( e: RuntimeCommands, ) -> Result<Self, <QueryObjects as TryFrom<RuntimeCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for QueryObjects
Auto Trait Implementations§
impl Freeze for QueryObjects
impl RefUnwindSafe for QueryObjects
impl Send for QueryObjects
impl Sync for QueryObjects
impl Unpin for QueryObjects
impl UnsafeUnpin for QueryObjects
impl UnwindSafe for QueryObjects
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