pub struct AnnotationQueuesListQueueItemsBuilder<'f1, 'f2, S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with call().
Implementations§
Source§impl<'f1, 'f2, S: State> AnnotationQueuesListQueueItemsBuilder<'f1, 'f2, S>
impl<'f1, 'f2, S: State> AnnotationQueuesListQueueItemsBuilder<'f1, 'f2, S>
Sourcepub async fn call(
self,
) -> Result<PaginatedAnnotationQueueItems, Error<AnnotationQueuesListQueueItemsError>>where
S: IsComplete,
pub async fn call(
self,
) -> Result<PaginatedAnnotationQueueItems, Error<AnnotationQueuesListQueueItemsError>>where
S: IsComplete,
Finishes building and performs the requested action.
Sourcepub fn configuration(
self,
value: &'f1 Configuration,
) -> AnnotationQueuesListQueueItemsBuilder<'f1, 'f2, SetConfiguration<S>>where
S::Configuration: IsUnset,
pub fn configuration(
self,
value: &'f1 Configuration,
) -> AnnotationQueuesListQueueItemsBuilder<'f1, 'f2, SetConfiguration<S>>where
S::Configuration: IsUnset,
Required.
Sourcepub fn queue_id(
self,
value: &'f2 str,
) -> AnnotationQueuesListQueueItemsBuilder<'f1, 'f2, SetQueueId<S>>where
S::QueueId: IsUnset,
pub fn queue_id(
self,
value: &'f2 str,
) -> AnnotationQueuesListQueueItemsBuilder<'f1, 'f2, SetQueueId<S>>where
S::QueueId: IsUnset,
Required.
Sourcepub fn status(
self,
value: AnnotationQueueStatus,
) -> AnnotationQueuesListQueueItemsBuilder<'f1, 'f2, SetStatus<S>>where
S::Status: IsUnset,
pub fn status(
self,
value: AnnotationQueueStatus,
) -> AnnotationQueuesListQueueItemsBuilder<'f1, 'f2, SetStatus<S>>where
S::Status: IsUnset,
Sourcepub fn maybe_status(
self,
value: Option<AnnotationQueueStatus>,
) -> AnnotationQueuesListQueueItemsBuilder<'f1, 'f2, SetStatus<S>>where
S::Status: IsUnset,
pub fn maybe_status(
self,
value: Option<AnnotationQueueStatus>,
) -> AnnotationQueuesListQueueItemsBuilder<'f1, 'f2, SetStatus<S>>where
S::Status: IsUnset,
Sourcepub fn page(
self,
value: i32,
) -> AnnotationQueuesListQueueItemsBuilder<'f1, 'f2, SetPage<S>>where
S::Page: IsUnset,
pub fn page(
self,
value: i32,
) -> AnnotationQueuesListQueueItemsBuilder<'f1, 'f2, SetPage<S>>where
S::Page: IsUnset,
Sourcepub fn maybe_page(
self,
value: Option<i32>,
) -> AnnotationQueuesListQueueItemsBuilder<'f1, 'f2, SetPage<S>>where
S::Page: IsUnset,
pub fn maybe_page(
self,
value: Option<i32>,
) -> AnnotationQueuesListQueueItemsBuilder<'f1, 'f2, SetPage<S>>where
S::Page: IsUnset,
Sourcepub fn limit(
self,
value: i32,
) -> AnnotationQueuesListQueueItemsBuilder<'f1, 'f2, SetLimit<S>>where
S::Limit: IsUnset,
pub fn limit(
self,
value: i32,
) -> AnnotationQueuesListQueueItemsBuilder<'f1, 'f2, SetLimit<S>>where
S::Limit: IsUnset,
Sourcepub fn maybe_limit(
self,
value: Option<i32>,
) -> AnnotationQueuesListQueueItemsBuilder<'f1, 'f2, SetLimit<S>>where
S::Limit: IsUnset,
pub fn maybe_limit(
self,
value: Option<i32>,
) -> AnnotationQueuesListQueueItemsBuilder<'f1, 'f2, SetLimit<S>>where
S::Limit: IsUnset,
Auto Trait Implementations§
impl<'f1, 'f2, S> Freeze for AnnotationQueuesListQueueItemsBuilder<'f1, 'f2, S>
impl<'f1, 'f2, S = Empty> !RefUnwindSafe for AnnotationQueuesListQueueItemsBuilder<'f1, 'f2, S>
impl<'f1, 'f2, S> Send for AnnotationQueuesListQueueItemsBuilder<'f1, 'f2, S>
impl<'f1, 'f2, S> Sync for AnnotationQueuesListQueueItemsBuilder<'f1, 'f2, S>
impl<'f1, 'f2, S> Unpin for AnnotationQueuesListQueueItemsBuilder<'f1, 'f2, S>
impl<'f1, 'f2, S = Empty> !UnwindSafe for AnnotationQueuesListQueueItemsBuilder<'f1, 'f2, 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