pub struct QueryableBuilder<P, K, C, S>{ /* private fields */ }Expand description
The builder for a queryable.
Implementations§
Source§impl<P> QueryableBuilder<P, NoSelector, NoCallback, NoStorage>
impl<P> QueryableBuilder<P, NoSelector, NoCallback, NoStorage>
Source§impl<P, K, C, S> QueryableBuilder<P, K, C, S>
impl<P, K, C, S> QueryableBuilder<P, K, C, S>
Sourcepub const fn activation_state(self, state: OperationState) -> Self
pub const fn activation_state(self, state: OperationState) -> Self
Set the activation state.
Sourcepub const fn completeness(self, completeness: bool) -> Self
pub const fn completeness(self, completeness: bool) -> Self
Set the completeness of the Queryable.
Sourcepub fn session_id(self, session_id: &str) -> Self
pub fn session_id(self, session_id: &str) -> Self
Set the session id.
Source§impl<P, C, S> QueryableBuilder<P, NoSelector, C, S>
impl<P, C, S> QueryableBuilder<P, NoSelector, C, S>
Source§impl<P, K, S> QueryableBuilder<P, K, NoCallback, S>
impl<P, K, S> QueryableBuilder<P, K, NoCallback, S>
Source§impl<P, K, C> QueryableBuilder<P, K, C, NoStorage>
impl<P, K, C> QueryableBuilder<P, K, C, NoStorage>
Source§impl<P, S> QueryableBuilder<P, Selector, Callback<ArcGetCallback<P>>, S>
impl<P, S> QueryableBuilder<P, Selector, Callback<ArcGetCallback<P>>, S>
Trait Implementations§
Auto Trait Implementations§
impl<P, K, C, S> Freeze for QueryableBuilder<P, K, C, S>
impl<P, K, C, S> !RefUnwindSafe for QueryableBuilder<P, K, C, S>
impl<P, K, C, S> Send for QueryableBuilder<P, K, C, S>
impl<P, K, C, S> Sync for QueryableBuilder<P, K, C, S>
impl<P, K, C, S> Unpin for QueryableBuilder<P, K, C, S>
impl<P, K, C, S> !UnwindSafe for QueryableBuilder<P, K, C, S>
Blanket Implementations§
Source§impl<Source> AccessAs for Source
impl<Source> AccessAs for Source
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more