pub struct EnableResult {
pub should_init_db: bool,
pub db_path: Option<PathBuf>,
}Expand description
Result of running enable - used by the binary to determine what storage to create.
Fields§
§should_init_db: bool§db_path: Option<PathBuf>Auto Trait Implementations§
impl Freeze for EnableResult
impl RefUnwindSafe for EnableResult
impl Send for EnableResult
impl Sync for EnableResult
impl Unpin for EnableResult
impl UnwindSafe for EnableResult
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