pub struct AnnotationQueuesCreateQueueBuilder<'f1, S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with call().
Implementations§
Source§impl<'f1, S: State> AnnotationQueuesCreateQueueBuilder<'f1, S>
impl<'f1, S: State> AnnotationQueuesCreateQueueBuilder<'f1, S>
Sourcepub async fn call(
self,
) -> Result<AnnotationQueue, Error<AnnotationQueuesCreateQueueError>>where
S: IsComplete,
pub async fn call(
self,
) -> Result<AnnotationQueue, Error<AnnotationQueuesCreateQueueError>>where
S: IsComplete,
Finishes building and performs the requested action.
Sourcepub fn configuration(
self,
value: &'f1 Configuration,
) -> AnnotationQueuesCreateQueueBuilder<'f1, SetConfiguration<S>>where
S::Configuration: IsUnset,
pub fn configuration(
self,
value: &'f1 Configuration,
) -> AnnotationQueuesCreateQueueBuilder<'f1, SetConfiguration<S>>where
S::Configuration: IsUnset,
Required.
Sourcepub fn create_annotation_queue_request(
self,
value: CreateAnnotationQueueRequest,
) -> AnnotationQueuesCreateQueueBuilder<'f1, SetCreateAnnotationQueueRequest<S>>where
S::CreateAnnotationQueueRequest: IsUnset,
pub fn create_annotation_queue_request(
self,
value: CreateAnnotationQueueRequest,
) -> AnnotationQueuesCreateQueueBuilder<'f1, SetCreateAnnotationQueueRequest<S>>where
S::CreateAnnotationQueueRequest: IsUnset,
Required.
Auto Trait Implementations§
impl<'f1, S> Freeze for AnnotationQueuesCreateQueueBuilder<'f1, S>
impl<'f1, S = Empty> !RefUnwindSafe for AnnotationQueuesCreateQueueBuilder<'f1, S>
impl<'f1, S> Send for AnnotationQueuesCreateQueueBuilder<'f1, S>
impl<'f1, S> Sync for AnnotationQueuesCreateQueueBuilder<'f1, S>
impl<'f1, S> Unpin for AnnotationQueuesCreateQueueBuilder<'f1, S>
impl<'f1, S = Empty> !UnwindSafe for AnnotationQueuesCreateQueueBuilder<'f1, 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