pub struct PaginatedAnnotationQueueItems {
pub data: Vec<AnnotationQueueItem>,
pub meta: Box<UtilsMetaResponse>,
}Fields§
§data: Vec<AnnotationQueueItem>§meta: Box<UtilsMetaResponse>Implementations§
Source§impl PaginatedAnnotationQueueItems
impl PaginatedAnnotationQueueItems
pub fn new( data: Vec<AnnotationQueueItem>, meta: UtilsMetaResponse, ) -> PaginatedAnnotationQueueItems
Trait Implementations§
Source§impl Clone for PaginatedAnnotationQueueItems
impl Clone for PaginatedAnnotationQueueItems
Source§fn clone(&self) -> PaginatedAnnotationQueueItems
fn clone(&self) -> PaginatedAnnotationQueueItems
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for PaginatedAnnotationQueueItems
impl Default for PaginatedAnnotationQueueItems
Source§fn default() -> PaginatedAnnotationQueueItems
fn default() -> PaginatedAnnotationQueueItems
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PaginatedAnnotationQueueItems
impl<'de> Deserialize<'de> for PaginatedAnnotationQueueItems
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PaginatedAnnotationQueueItems
impl PartialEq for PaginatedAnnotationQueueItems
Source§fn eq(&self, other: &PaginatedAnnotationQueueItems) -> bool
fn eq(&self, other: &PaginatedAnnotationQueueItems) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PaginatedAnnotationQueueItems
Auto Trait Implementations§
impl Freeze for PaginatedAnnotationQueueItems
impl RefUnwindSafe for PaginatedAnnotationQueueItems
impl Send for PaginatedAnnotationQueueItems
impl Sync for PaginatedAnnotationQueueItems
impl Unpin for PaginatedAnnotationQueueItems
impl UnwindSafe for PaginatedAnnotationQueueItems
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