pub struct D1ResultMeta {
pub changed_db: Option<bool>,
pub changes: Option<usize>,
pub duration: Option<f64>,
pub last_row_id: Option<i64>,
pub rows_read: Option<usize>,
pub rows_written: Option<usize>,
pub size_after: Option<usize>,
}Fields§
§changed_db: Option<bool>§changes: Option<usize>§duration: Option<f64>§last_row_id: Option<i64>§rows_read: Option<usize>§rows_written: Option<usize>§size_after: Option<usize>Trait Implementations§
Source§impl Clone for D1ResultMeta
impl Clone for D1ResultMeta
Source§fn clone(&self) -> D1ResultMeta
fn clone(&self) -> D1ResultMeta
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 D1ResultMeta
impl Debug for D1ResultMeta
Source§impl<'de> Deserialize<'de> for D1ResultMeta
impl<'de> Deserialize<'de> for D1ResultMeta
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 D1ResultMeta
impl RefUnwindSafe for D1ResultMeta
impl Send for D1ResultMeta
impl Sync for D1ResultMeta
impl Unpin for D1ResultMeta
impl UnsafeUnpin for D1ResultMeta
impl UnwindSafe for D1ResultMeta
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