pub struct PersistentRoot { /* private fields */ }
Expand description

A persistent working directory where Ditto will store its data across restarts of the host process on the local file system

Implementations§

source§

impl PersistentRoot

source

pub fn new(root_dir: impl Into<PathBuf>) -> Result<Self, DittoError>

Manually construct a root directory

source

pub fn from_current_exe() -> Result<Self, DittoError>

Get a Ditto directory from the path of the current executable

source

pub fn from_env() -> Result<Self, DittoError>

Create a Ditto directory from env vars

Trait Implementations§

source§

impl Default for PersistentRoot

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl DittoRoot for PersistentRoot

source§

fn root_path(&self) -> &Path

Return the root path of the Ditto directory
source§

fn exists(&self) -> bool

Return true if the Root path exists
source§

fn is_valid(&self) -> Result<(), DittoError>

Return true if the provided Root path is a valid path
source§

fn data_path(&self) -> &Path

👎Deprecated: Use root_path instead
Return the path of the data in the Ditto directory
source§

fn root_dir_to_c_str(&self) -> Result<Box, DittoError>

Emits the Ditto root directory path as a null-terminated UTF-8 C-string
source§

fn data_dir_to_c_str(&self) -> Result<Box, DittoError>

👎Deprecated: Use root_dir_to_c_str instead
Emits the Ditto data directory path as a null-terminated UTF-8 C-string
source§

fn root_path_as_str(&self) -> Result<&str, DittoError>

Return the Root path as a &str
source§

fn data_path_as_str(&self) -> Result<&str, DittoError>

👎Deprecated: Use root_path_as_str instead
Returns the path of the Ditto data directory as an &str

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> CompatExt for T

§

fn compat(self) -> Compat<T>

Applies the [Compat] adapter by value. Read more
§

fn compat_ref(&self) -> Compat<&T>

Applies the [Compat] adapter by shared reference. Read more
§

fn compat_mut(&mut self) -> Compat<&mut T>

Applies the [Compat] adapter by mutable reference. Read more
§

impl<T> FitForCBox for T

§

type CBoxWrapped = Box_<T>

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> ManuallyDropMut for T

§

type Ret = ManuallyDrop<T>

§

fn manually_drop_mut<'__>(&'__ mut self) -> &'__ mut ManuallyDrop<T>

§

impl<T> To for T
where T: ?Sized,

§

fn to<T>(self) -> T
where Self: Into<T>,

Converts to T by calling Into<T>::into.
§

fn try_to<T>(self) -> Result<T, Self::Error>
where Self: TryInto<T>,

Tries to convert to T by calling TryInto<T>::try_into.
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

impl<F> ZeroSizedElseWrathOfTheGඞds for F