[][src]Struct acick_util::DATA_LOCAL_DIR

pub struct DATA_LOCAL_DIR { /* fields omitted */ }

Methods from Deref<Target = AbsPathBuf>

pub fn join_expand<P: AsRef<Path>>(&self, path: P) -> Result<Self>[src]

pub fn join<P: AsRef<Path>>(&self, path: P) -> Self[src]

pub fn parent(&self) -> Option<Self>[src]

pub fn search_dir_contains(&self, file_name: &str) -> Option<Self>[src]

pub fn save_pretty(
    &self,
    save: impl FnOnce(File) -> Result<()>,
    overwrite: bool,
    base_dir: Option<&AbsPathBuf>,
    cnsl: &mut dyn Write
) -> Result<Option<bool>>
[src]

pub fn save(
    &self,
    save: impl FnOnce(File) -> Result<()>,
    overwrite: bool
) -> Result<Option<bool>>
[src]

pub fn load_pretty<T>(
    &self,
    load: impl FnOnce(File) -> Result<T>,
    base_dir: Option<&AbsPathBuf>,
    cnsl: &mut dyn Write
) -> Result<T>
[src]

pub fn load<T>(&self, load: impl FnOnce(File) -> Result<T>) -> Result<T>[src]

pub fn remove_dir_all_pretty(
    &self,
    base_dir: Option<&AbsPathBuf>,
    cnsl: &mut dyn Write
) -> Result<bool>
[src]

pub fn move_from_pretty(
    &self,
    from: &AbsPathBuf,
    base_dir: Option<&AbsPathBuf>,
    cnsl: &mut dyn Write
) -> Result<()>
[src]

pub fn create_dir_all_and_open(
    &self,
    is_read: bool,
    is_write: bool
) -> Result<File>
[src]

pub fn create_dir_all(&self) -> Result<()>[src]

pub fn strip_prefix(&self, base: &AbsPathBuf) -> &Path[src]

Trait Implementations

impl Deref for DATA_LOCAL_DIR[src]

type Target = AbsPathBuf

The resulting type after dereferencing.

impl LazyStatic for DATA_LOCAL_DIR[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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