pub struct CreateTableResponse {
pub full_name: Option<String>,
pub namespace: Option<String>,
pub table_name: Option<String>,
pub already_existed: Option<bool>,
pub example_query: Option<String>,
pub message: Option<String>,
}Expand description
Response from creating a table
Fields§
§full_name: Option<String>Full table name
namespace: Option<String>Namespace
table_name: Option<String>Table name
already_existed: Option<bool>Whether table already existed
example_query: Option<String>Example query to use the table
message: Option<String>Message
Trait Implementations§
Source§impl Clone for CreateTableResponse
impl Clone for CreateTableResponse
Source§fn clone(&self) -> CreateTableResponse
fn clone(&self) -> CreateTableResponse
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 CreateTableResponse
impl Debug for CreateTableResponse
Source§impl<'de> Deserialize<'de> for CreateTableResponse
impl<'de> Deserialize<'de> for CreateTableResponse
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 CreateTableResponse
impl RefUnwindSafe for CreateTableResponse
impl Send for CreateTableResponse
impl Sync for CreateTableResponse
impl Unpin for CreateTableResponse
impl UnwindSafe for CreateTableResponse
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