pub struct LibraryProcessingJobPageResponse {
pub items: Vec<LibraryProcessingJobResponse>,
pub page: u32,
pub page_size: u32,
pub total: u64,
pub total_pages: u32,
pub summary: LibraryProcessingJobSummaryResponse,
}Fields§
§items: Vec<LibraryProcessingJobResponse>§page: u32§page_size: u32§total: u64§total_pages: u32§summary: LibraryProcessingJobSummaryResponseTrait Implementations§
Source§impl Clone for LibraryProcessingJobPageResponse
impl Clone for LibraryProcessingJobPageResponse
Source§fn clone(&self) -> LibraryProcessingJobPageResponse
fn clone(&self) -> LibraryProcessingJobPageResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ComposeSchema for LibraryProcessingJobPageResponse
impl ComposeSchema for LibraryProcessingJobPageResponse
Source§impl<'de> Deserialize<'de> for LibraryProcessingJobPageResponse
impl<'de> Deserialize<'de> for LibraryProcessingJobPageResponse
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
Auto Trait Implementations§
impl Freeze for LibraryProcessingJobPageResponse
impl RefUnwindSafe for LibraryProcessingJobPageResponse
impl Send for LibraryProcessingJobPageResponse
impl Sync for LibraryProcessingJobPageResponse
impl Unpin for LibraryProcessingJobPageResponse
impl UnsafeUnpin for LibraryProcessingJobPageResponse
impl UnwindSafe for LibraryProcessingJobPageResponse
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