pub struct PaginatedAnnotationQueueItemsBuilder<S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S: State> PaginatedAnnotationQueueItemsBuilder<S>
impl<S: State> PaginatedAnnotationQueueItemsBuilder<S>
Sourcepub fn build(self) -> PaginatedAnnotationQueueItemswhere
S: IsComplete,
pub fn build(self) -> PaginatedAnnotationQueueItemswhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn data(
self,
value: Vec<AnnotationQueueItem>,
) -> PaginatedAnnotationQueueItemsBuilder<SetData<S>>where
S::Data: IsUnset,
pub fn data(
self,
value: Vec<AnnotationQueueItem>,
) -> PaginatedAnnotationQueueItemsBuilder<SetData<S>>where
S::Data: IsUnset,
Required.
Sourcepub fn meta(
self,
value: Box<UtilsMetaResponse>,
) -> PaginatedAnnotationQueueItemsBuilder<SetMeta<S>>where
S::Meta: IsUnset,
pub fn meta(
self,
value: Box<UtilsMetaResponse>,
) -> PaginatedAnnotationQueueItemsBuilder<SetMeta<S>>where
S::Meta: IsUnset,
Required.
Auto Trait Implementations§
impl<S> Freeze for PaginatedAnnotationQueueItemsBuilder<S>
impl<S> RefUnwindSafe for PaginatedAnnotationQueueItemsBuilder<S>
impl<S> Send for PaginatedAnnotationQueueItemsBuilder<S>
impl<S> Sync for PaginatedAnnotationQueueItemsBuilder<S>
impl<S> Unpin for PaginatedAnnotationQueueItemsBuilder<S>
impl<S> UnwindSafe for PaginatedAnnotationQueueItemsBuilder<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