[]Struct acick_config::COOKIES_PATH

pub struct COOKIES_PATH { /* fields omitted */ }

Methods from Deref<Target = AbsPathBuf>

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

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

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

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

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

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

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

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

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

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

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

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

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

Trait Implementations

impl Deref for COOKIES_PATH

type Target = AbsPathBuf

The resulting type after dereferencing.

impl LazyStatic for COOKIES_PATH

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>,