pub struct QueryBuilder<'a> { /* private fields */ }
Expand description
Flexible builder for a complex Query
.
Implementations§
Source§impl<'a> QueryBuilder<'a>
impl<'a> QueryBuilder<'a>
Sourcepub fn with_version_id(self, version_id: &'a str) -> VersionIdQuery<'a>
pub fn with_version_id(self, version_id: &'a str) -> VersionIdQuery<'a>
Create a query with a version id.
Sourcepub fn with_version_stage(self, version_stage: &'a str) -> VersionStageQuery<'a>
pub fn with_version_stage(self, version_stage: &'a str) -> VersionStageQuery<'a>
Create a query with a version stage.
Auto Trait Implementations§
impl<'a> Freeze for QueryBuilder<'a>
impl<'a> RefUnwindSafe for QueryBuilder<'a>
impl<'a> Send for QueryBuilder<'a>
impl<'a> Sync for QueryBuilder<'a>
impl<'a> Unpin for QueryBuilder<'a>
impl<'a> UnwindSafe for QueryBuilder<'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