pub struct GetLinkedCollectionsParamsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build()
.
Implementations§
Source§impl<S: State> GetLinkedCollectionsParamsBuilder<S>
impl<S: State> GetLinkedCollectionsParamsBuilder<S>
Sourcepub fn build(self) -> GetLinkedCollectionsParamswhere
S: IsComplete,
pub fn build(self) -> GetLinkedCollectionsParamswhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn page_cursor(
self,
value: String,
) -> GetLinkedCollectionsParamsBuilder<SetPageCursor<S>>where
S::PageCursor: IsUnset,
pub fn page_cursor(
self,
value: String,
) -> GetLinkedCollectionsParamsBuilder<SetPageCursor<S>>where
S::PageCursor: IsUnset,
Sourcepub fn maybe_page_cursor(
self,
value: Option<String>,
) -> GetLinkedCollectionsParamsBuilder<SetPageCursor<S>>where
S::PageCursor: IsUnset,
pub fn maybe_page_cursor(
self,
value: Option<String>,
) -> GetLinkedCollectionsParamsBuilder<SetPageCursor<S>>where
S::PageCursor: IsUnset,
Sourcepub fn page_size(
self,
value: f64,
) -> GetLinkedCollectionsParamsBuilder<SetPageSize<S>>where
S::PageSize: IsUnset,
pub fn page_size(
self,
value: f64,
) -> GetLinkedCollectionsParamsBuilder<SetPageSize<S>>where
S::PageSize: IsUnset,
Sourcepub fn maybe_page_size(
self,
value: Option<f64>,
) -> GetLinkedCollectionsParamsBuilder<SetPageSize<S>>where
S::PageSize: IsUnset,
pub fn maybe_page_size(
self,
value: Option<f64>,
) -> GetLinkedCollectionsParamsBuilder<SetPageSize<S>>where
S::PageSize: IsUnset,
Sourcepub fn status(
self,
value: Value,
) -> GetLinkedCollectionsParamsBuilder<SetStatus<S>>where
S::Status: IsUnset,
pub fn status(
self,
value: Value,
) -> GetLinkedCollectionsParamsBuilder<SetStatus<S>>where
S::Status: IsUnset,
Sourcepub fn maybe_status(
self,
value: Option<Value>,
) -> GetLinkedCollectionsParamsBuilder<SetStatus<S>>where
S::Status: IsUnset,
pub fn maybe_status(
self,
value: Option<Value>,
) -> GetLinkedCollectionsParamsBuilder<SetStatus<S>>where
S::Status: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for GetLinkedCollectionsParamsBuilder<S>
impl<S> RefUnwindSafe for GetLinkedCollectionsParamsBuilder<S>
impl<S> Send for GetLinkedCollectionsParamsBuilder<S>
impl<S> Sync for GetLinkedCollectionsParamsBuilder<S>
impl<S> Unpin for GetLinkedCollectionsParamsBuilder<S>
impl<S> UnwindSafe for GetLinkedCollectionsParamsBuilder<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