pub struct RequestBuilder<St: State, S: BosStr = DefaultStr> { /* private fields */ }Expand description
Builder for constructing an instance of this type.
Implementations§
Source§impl RequestBuilder<Empty, DefaultStr>
impl RequestBuilder<Empty, DefaultStr>
Source§impl<S: BosStr> RequestBuilder<Empty, S>
impl<S: BosStr> RequestBuilder<Empty, S>
Source§impl<St, S: BosStr> RequestBuilder<St, S>
impl<St, S: BosStr> RequestBuilder<St, S>
Sourcepub fn created_at(
self,
value: impl Into<Datetime>,
) -> RequestBuilder<SetCreatedAt<St>, S>
pub fn created_at( self, value: impl Into<Datetime>, ) -> RequestBuilder<SetCreatedAt<St>, S>
Set the createdAt field (required)
Source§impl<St, S: BosStr> RequestBuilder<St, S>
impl<St, S: BosStr> RequestBuilder<St, S>
Sourcepub fn feature(self, value: impl Into<S>) -> RequestBuilder<SetFeature<St>, S>
pub fn feature(self, value: impl Into<S>) -> RequestBuilder<SetFeature<St>, S>
Set the feature field (required)
Source§impl<St, S: BosStr> RequestBuilder<St, S>
impl<St, S: BosStr> RequestBuilder<St, S>
Auto Trait Implementations§
impl<St, S> Freeze for RequestBuilder<St, S>where
S: Freeze,
impl<St, S> RefUnwindSafe for RequestBuilder<St, S>where
S: RefUnwindSafe,
impl<St, S> Send for RequestBuilder<St, S>where
S: Send,
impl<St, S> Sync for RequestBuilder<St, S>where
S: Sync,
impl<St, S> Unpin for RequestBuilder<St, S>where
S: Unpin,
impl<St, S> UnsafeUnpin for RequestBuilder<St, S>where
S: UnsafeUnpin,
impl<St, S> UnwindSafe for RequestBuilder<St, S>where
S: 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