pub struct CreateAnnotationQueueAssignmentResponseBuilder<S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S: State> CreateAnnotationQueueAssignmentResponseBuilder<S>
impl<S: State> CreateAnnotationQueueAssignmentResponseBuilder<S>
Sourcepub fn build(self) -> CreateAnnotationQueueAssignmentResponsewhere
S: IsComplete,
pub fn build(self) -> CreateAnnotationQueueAssignmentResponsewhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn user_id(
self,
value: String,
) -> CreateAnnotationQueueAssignmentResponseBuilder<SetUserId<S>>where
S::UserId: IsUnset,
pub fn user_id(
self,
value: String,
) -> CreateAnnotationQueueAssignmentResponseBuilder<SetUserId<S>>where
S::UserId: IsUnset,
Required.
Sourcepub fn queue_id(
self,
value: String,
) -> CreateAnnotationQueueAssignmentResponseBuilder<SetQueueId<S>>where
S::QueueId: IsUnset,
pub fn queue_id(
self,
value: String,
) -> CreateAnnotationQueueAssignmentResponseBuilder<SetQueueId<S>>where
S::QueueId: IsUnset,
Required.
Sourcepub fn project_id(
self,
value: String,
) -> CreateAnnotationQueueAssignmentResponseBuilder<SetProjectId<S>>where
S::ProjectId: IsUnset,
pub fn project_id(
self,
value: String,
) -> CreateAnnotationQueueAssignmentResponseBuilder<SetProjectId<S>>where
S::ProjectId: IsUnset,
Required.
Auto Trait Implementations§
impl<S> Freeze for CreateAnnotationQueueAssignmentResponseBuilder<S>
impl<S> RefUnwindSafe for CreateAnnotationQueueAssignmentResponseBuilder<S>
impl<S> Send for CreateAnnotationQueueAssignmentResponseBuilder<S>
impl<S> Sync for CreateAnnotationQueueAssignmentResponseBuilder<S>
impl<S> Unpin for CreateAnnotationQueueAssignmentResponseBuilder<S>
impl<S> UnwindSafe for CreateAnnotationQueueAssignmentResponseBuilder<S>
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more