pub struct GetCollectionByIdParamsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build()
.
Implementations§
Source§impl<S: State> GetCollectionByIdParamsBuilder<S>
impl<S: State> GetCollectionByIdParamsBuilder<S>
Sourcepub fn build(self) -> GetCollectionByIdParamswhere
S: IsComplete,
pub fn build(self) -> GetCollectionByIdParamswhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn id(self, value: String) -> GetCollectionByIdParamsBuilder<SetId<S>>where
S::Id: IsUnset,
pub fn id(self, value: String) -> GetCollectionByIdParamsBuilder<SetId<S>>where
S::Id: IsUnset,
Required.
The token link id
Auto Trait Implementations§
impl<S> Freeze for GetCollectionByIdParamsBuilder<S>
impl<S> RefUnwindSafe for GetCollectionByIdParamsBuilder<S>
impl<S> Send for GetCollectionByIdParamsBuilder<S>
impl<S> Sync for GetCollectionByIdParamsBuilder<S>
impl<S> Unpin for GetCollectionByIdParamsBuilder<S>
impl<S> UnwindSafe for GetCollectionByIdParamsBuilder<S>
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