pub struct ListTablesOutput {
pub table_names: Vec<String>,
pub last_evaluated_table_name: Option<String>,
}Expand description
Output for the ListTables operation.
Fields§
§table_names: Vec<String>The names of the tables associated with the current account and region.
last_evaluated_table_name: Option<String>The name of the last table in the current page of results. Use this
value as ExclusiveStartTableName in a subsequent request to continue.
Trait Implementations§
Source§impl Clone for ListTablesOutput
impl Clone for ListTablesOutput
Source§fn clone(&self) -> ListTablesOutput
fn clone(&self) -> ListTablesOutput
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 ListTablesOutput
impl Debug for ListTablesOutput
Source§impl Default for ListTablesOutput
impl Default for ListTablesOutput
Source§fn default() -> ListTablesOutput
fn default() -> ListTablesOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListTablesOutput
impl<'de> Deserialize<'de> for ListTablesOutput
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 ListTablesOutput
impl RefUnwindSafe for ListTablesOutput
impl Send for ListTablesOutput
impl Sync for ListTablesOutput
impl Unpin for ListTablesOutput
impl UnsafeUnpin for ListTablesOutput
impl UnwindSafe for ListTablesOutput
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