pub struct RequestBuilder<TypedBuilderFields> { /* private fields */ }Expand description
Builder for Request instances.
See Request::builder() for more info.
Implementations§
Source§impl<__local_only, __detail, __limit, __offset> RequestBuilder<((), __local_only, __detail, __limit, __offset)>
impl<__local_only, __detail, __limit, __offset> RequestBuilder<((), __local_only, __detail, __limit, __offset)>
Source§impl<__query, __detail, __limit, __offset> RequestBuilder<(__query, (), __detail, __limit, __offset)>
impl<__query, __detail, __limit, __offset> RequestBuilder<(__query, (), __detail, __limit, __offset)>
pub fn local_only( self, local_only: bool, ) -> RequestBuilder<(__query, (Option<bool>,), __detail, __limit, __offset)>
Source§impl<__query, __local_only, __limit, __offset> RequestBuilder<(__query, __local_only, (), __limit, __offset)>
impl<__query, __local_only, __limit, __offset> RequestBuilder<(__query, __local_only, (), __limit, __offset)>
Source§impl<__query, __local_only, __detail, __offset> RequestBuilder<(__query, __local_only, __detail, (), __offset)>
impl<__query, __local_only, __detail, __offset> RequestBuilder<(__query, __local_only, __detail, (), __offset)>
Source§impl<__query, __local_only, __detail, __limit> RequestBuilder<(__query, __local_only, __detail, __limit, ())>
impl<__query, __local_only, __detail, __limit> RequestBuilder<(__query, __local_only, __detail, __limit, ())>
Auto Trait Implementations§
impl<TypedBuilderFields> Freeze for RequestBuilder<TypedBuilderFields>where
TypedBuilderFields: Freeze,
impl<TypedBuilderFields> RefUnwindSafe for RequestBuilder<TypedBuilderFields>where
TypedBuilderFields: RefUnwindSafe,
impl<TypedBuilderFields> Send for RequestBuilder<TypedBuilderFields>where
TypedBuilderFields: Send,
impl<TypedBuilderFields> Sync for RequestBuilder<TypedBuilderFields>where
TypedBuilderFields: Sync,
impl<TypedBuilderFields> Unpin for RequestBuilder<TypedBuilderFields>where
TypedBuilderFields: Unpin,
impl<TypedBuilderFields> UnwindSafe for RequestBuilder<TypedBuilderFields>where
TypedBuilderFields: UnwindSafe,
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