pub struct CheckoutResult {
pub database_id: String,
pub data_version: i64,
pub bytes: Vec<u8>,
}Fields§
§database_id: String§data_version: i64§bytes: Vec<u8>Gzipped sqlite file. flate2::read::GzDecoder to extract.
Trait Implementations§
Source§impl Clone for CheckoutResult
impl Clone for CheckoutResult
Source§fn clone(&self) -> CheckoutResult
fn clone(&self) -> CheckoutResult
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 moreAuto Trait Implementations§
impl Freeze for CheckoutResult
impl RefUnwindSafe for CheckoutResult
impl Send for CheckoutResult
impl Sync for CheckoutResult
impl Unpin for CheckoutResult
impl UnsafeUnpin for CheckoutResult
impl UnwindSafe for CheckoutResult
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