pub struct InsertedRow {
pub cells: Vec<Option<String>>,
}Fields§
§cells: Vec<Option<String>>Cells in the order specified by the caller’s return_columns.
Mirrors the FFI execution-result row shape so the UI can
append directly to its in-memory rows array.
Trait Implementations§
Source§impl Clone for InsertedRow
impl Clone for InsertedRow
Source§fn clone(&self) -> InsertedRow
fn clone(&self) -> InsertedRow
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 InsertedRow
impl Debug for InsertedRow
Source§impl<'de> Deserialize<'de> for InsertedRow
impl<'de> Deserialize<'de> for InsertedRow
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<InsertedRow, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<InsertedRow, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for InsertedRow
impl Serialize for InsertedRow
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for InsertedRow
impl RefUnwindSafe for InsertedRow
impl Send for InsertedRow
impl Sync for InsertedRow
impl Unpin for InsertedRow
impl UnsafeUnpin for InsertedRow
impl UnwindSafe for InsertedRow
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