pub struct S3JobListResponse {
pub jobs: Vec<S3Job>,
pub total: u32,
}Expand description
Paginated list of S3 jobs.
Fields§
§jobs: Vec<S3Job>S3 jobs.
total: u32Total jobs.
Trait Implementations§
Source§impl Clone for S3JobListResponse
impl Clone for S3JobListResponse
Source§fn clone(&self) -> S3JobListResponse
fn clone(&self) -> S3JobListResponse
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 Debug for S3JobListResponse
impl Debug for S3JobListResponse
Source§impl<'de> Deserialize<'de> for S3JobListResponse
impl<'de> Deserialize<'de> for S3JobListResponse
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 S3JobListResponse
impl RefUnwindSafe for S3JobListResponse
impl Send for S3JobListResponse
impl Sync for S3JobListResponse
impl Unpin for S3JobListResponse
impl UnsafeUnpin for S3JobListResponse
impl UnwindSafe for S3JobListResponse
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