pub struct ListRestoreJobsOutput {
pub next_token: Option<String>,
pub restore_jobs: Option<Vec<RestoreJobsListMember>>,
}Fields§
§next_token: Option<String>The next item following a partial list of returned items. For example, if a request is made to return maxResults number of items, NextToken allows you to return more items in your list starting at the location pointed to by the next token.
restore_jobs: Option<Vec<RestoreJobsListMember>>An array of objects that contain detailed information about jobs to restore saved resources.
Trait Implementations§
Source§impl Clone for ListRestoreJobsOutput
impl Clone for ListRestoreJobsOutput
Source§fn clone(&self) -> ListRestoreJobsOutput
fn clone(&self) -> ListRestoreJobsOutput
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 ListRestoreJobsOutput
impl Debug for ListRestoreJobsOutput
Source§impl Default for ListRestoreJobsOutput
impl Default for ListRestoreJobsOutput
Source§fn default() -> ListRestoreJobsOutput
fn default() -> ListRestoreJobsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListRestoreJobsOutput
impl<'de> Deserialize<'de> for ListRestoreJobsOutput
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 ListRestoreJobsOutput
impl PartialEq for ListRestoreJobsOutput
impl StructuralPartialEq for ListRestoreJobsOutput
Auto Trait Implementations§
impl Freeze for ListRestoreJobsOutput
impl RefUnwindSafe for ListRestoreJobsOutput
impl Send for ListRestoreJobsOutput
impl Sync for ListRestoreJobsOutput
impl Unpin for ListRestoreJobsOutput
impl UnwindSafe for ListRestoreJobsOutput
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