pub struct InsertIntoTableResponse {
pub version: Option<i64>,
}
Expand description
InsertIntoTableResponse : Response from inserting records into a table
Fields§
§version: Option<i64>
The version of the table after the insert
Implementations§
Source§impl InsertIntoTableResponse
impl InsertIntoTableResponse
Sourcepub fn new() -> InsertIntoTableResponse
pub fn new() -> InsertIntoTableResponse
Response from inserting records into a table
Trait Implementations§
Source§impl Clone for InsertIntoTableResponse
impl Clone for InsertIntoTableResponse
Source§fn clone(&self) -> InsertIntoTableResponse
fn clone(&self) -> InsertIntoTableResponse
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 InsertIntoTableResponse
impl Debug for InsertIntoTableResponse
Source§impl Default for InsertIntoTableResponse
impl Default for InsertIntoTableResponse
Source§fn default() -> InsertIntoTableResponse
fn default() -> InsertIntoTableResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InsertIntoTableResponse
impl<'de> Deserialize<'de> for InsertIntoTableResponse
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 InsertIntoTableResponse
impl PartialEq for InsertIntoTableResponse
Source§impl Serialize for InsertIntoTableResponse
impl Serialize for InsertIntoTableResponse
impl StructuralPartialEq for InsertIntoTableResponse
Auto Trait Implementations§
impl Freeze for InsertIntoTableResponse
impl RefUnwindSafe for InsertIntoTableResponse
impl Send for InsertIntoTableResponse
impl Sync for InsertIntoTableResponse
impl Unpin for InsertIntoTableResponse
impl UnwindSafe for InsertIntoTableResponse
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