pub struct DbCandidate {
pub path: PathBuf,
pub size_bytes: u64,
pub webview_internal: bool,
}Expand description
A discovered database candidate with the metadata needed to disambiguate which DB the application actually uses.
Fields§
§path: PathBufAbsolute path to the discovered database file.
size_bytes: u64File size in bytes (0 if it could not be stat’d).
webview_internal: boolWhether this is a WebView/browser-engine internal store rather than an app DB.
Trait Implementations§
Source§impl Clone for DbCandidate
impl Clone for DbCandidate
Source§fn clone(&self) -> DbCandidate
fn clone(&self) -> DbCandidate
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 DbCandidate
impl RefUnwindSafe for DbCandidate
impl Send for DbCandidate
impl Sync for DbCandidate
impl Unpin for DbCandidate
impl UnsafeUnpin for DbCandidate
impl UnwindSafe for DbCandidate
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