pub struct QueryObjectsParams<'a> { /* private fields */ }Implementations§
Source§impl<'a> QueryObjectsParams<'a>
impl<'a> QueryObjectsParams<'a>
Sourcepub fn builder(
prototype_object_id: impl Into<RemoteObjectId<'a>>,
) -> QueryObjectsParamsBuilder<'a>
pub fn builder( prototype_object_id: impl Into<RemoteObjectId<'a>>, ) -> QueryObjectsParamsBuilder<'a>
Creates a builder for this type with the required parameters:
prototype_object_id: Identifier of the prototype to return objects for.
Sourcepub fn prototype_object_id(&self) -> &RemoteObjectId<'a>
pub fn prototype_object_id(&self) -> &RemoteObjectId<'a>
Identifier of the prototype to return objects for.
Sourcepub fn object_group(&self) -> Option<&str>
pub fn object_group(&self) -> Option<&str>
Symbolic group name that can be used to release the results.
Trait Implementations§
Source§impl<'a> CdpCommand<'a> for QueryObjectsParams<'a>
impl<'a> CdpCommand<'a> for QueryObjectsParams<'a>
Source§impl<'a> Clone for QueryObjectsParams<'a>
impl<'a> Clone for QueryObjectsParams<'a>
Source§fn clone(&self) -> QueryObjectsParams<'a>
fn clone(&self) -> QueryObjectsParams<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for QueryObjectsParams<'a>
impl<'a> Debug for QueryObjectsParams<'a>
Source§impl<'a> Default for QueryObjectsParams<'a>
impl<'a> Default for QueryObjectsParams<'a>
Source§fn default() -> QueryObjectsParams<'a>
fn default() -> QueryObjectsParams<'a>
Returns the “default value” for a type. Read more
Source§impl<'de, 'a> Deserialize<'de> for QueryObjectsParams<'a>
impl<'de, 'a> Deserialize<'de> for QueryObjectsParams<'a>
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
Auto Trait Implementations§
impl<'a> Freeze for QueryObjectsParams<'a>
impl<'a> RefUnwindSafe for QueryObjectsParams<'a>
impl<'a> Send for QueryObjectsParams<'a>
impl<'a> Sync for QueryObjectsParams<'a>
impl<'a> Unpin for QueryObjectsParams<'a>
impl<'a> UnsafeUnpin for QueryObjectsParams<'a>
impl<'a> UnwindSafe for QueryObjectsParams<'a>
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