pub struct QueryObjectsBuilder { /* private fields */ }Expand description
Builder for QueryObjects.
Implementations§
Source§impl QueryObjectsBuilder
impl QueryObjectsBuilder
Sourcepub fn prototype_object_id<VALUE: Into<RemoteObjectId>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn prototype_object_id<VALUE: Into<RemoteObjectId>>( &mut self, value: VALUE, ) -> &mut Self
Identifier of the prototype to return objects for.
Sourcepub fn object_group<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn object_group<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
Symbolic group name that can be used to release the results.
Sourcepub fn build(&self) -> Result<QueryObjects, QueryObjectsBuilderError>
pub fn build(&self) -> Result<QueryObjects, QueryObjectsBuilderError>
Trait Implementations§
Source§impl Clone for QueryObjectsBuilder
impl Clone for QueryObjectsBuilder
Source§fn clone(&self) -> QueryObjectsBuilder
fn clone(&self) -> QueryObjectsBuilder
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 QueryObjectsBuilder
impl RefUnwindSafe for QueryObjectsBuilder
impl Send for QueryObjectsBuilder
impl Sync for QueryObjectsBuilder
impl Unpin for QueryObjectsBuilder
impl UnsafeUnpin for QueryObjectsBuilder
impl UnwindSafe for QueryObjectsBuilder
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