pub struct AddTableResponse {
pub table: Option<Table>,
}Expand description
The result of adding a table.
This type is not used in any activity, and only used as part of another schema.
Fields§
§table: Option<Table>Output only. The table that was added.
Trait Implementations§
Source§impl Clone for AddTableResponse
impl Clone for AddTableResponse
Source§fn clone(&self) -> AddTableResponse
fn clone(&self) -> AddTableResponse
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 AddTableResponse
impl Debug for AddTableResponse
Source§impl Default for AddTableResponse
impl Default for AddTableResponse
Source§fn default() -> AddTableResponse
fn default() -> AddTableResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AddTableResponse
impl<'de> Deserialize<'de> for AddTableResponse
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 Serialize for AddTableResponse
impl Serialize for AddTableResponse
impl Part for AddTableResponse
Auto Trait Implementations§
impl Freeze for AddTableResponse
impl RefUnwindSafe for AddTableResponse
impl Send for AddTableResponse
impl Sync for AddTableResponse
impl Unpin for AddTableResponse
impl UnwindSafe for AddTableResponse
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