pub enum SqliteResponse {
Ok,
Row(Vec<u8>),
Error(String),
}Variants§
Trait Implementations§
Source§impl Clone for SqliteResponse
impl Clone for SqliteResponse
Source§fn clone(&self) -> SqliteResponse
fn clone(&self) -> SqliteResponse
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 SqliteResponse
impl Debug for SqliteResponse
Auto Trait Implementations§
impl Freeze for SqliteResponse
impl RefUnwindSafe for SqliteResponse
impl Send for SqliteResponse
impl Sync for SqliteResponse
impl Unpin for SqliteResponse
impl UnsafeUnpin for SqliteResponse
impl UnwindSafe for SqliteResponse
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