pub struct ListExportsOutput {
pub export_summaries: Option<Vec<ExportSummary>>,
pub next_token: Option<String>,
}
Fields§
§export_summaries: Option<Vec<ExportSummary>>
A list of ExportSummary
objects.
next_token: Option<String>
If this value is returned, there are additional results to be displayed. To retrieve them, call ListExports
again, with NextToken
set to this value.
Trait Implementations§
Source§impl Clone for ListExportsOutput
impl Clone for ListExportsOutput
Source§fn clone(&self) -> ListExportsOutput
fn clone(&self) -> ListExportsOutput
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 ListExportsOutput
impl Debug for ListExportsOutput
Source§impl Default for ListExportsOutput
impl Default for ListExportsOutput
Source§fn default() -> ListExportsOutput
fn default() -> ListExportsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListExportsOutput
impl<'de> Deserialize<'de> for ListExportsOutput
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 ListExportsOutput
impl PartialEq for ListExportsOutput
impl StructuralPartialEq for ListExportsOutput
Auto Trait Implementations§
impl Freeze for ListExportsOutput
impl RefUnwindSafe for ListExportsOutput
impl Send for ListExportsOutput
impl Sync for ListExportsOutput
impl Unpin for ListExportsOutput
impl UnwindSafe for ListExportsOutput
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