Trait android_build::PathExt

source ·
pub trait PathExt {
    // Required method
    fn path_if_exists(self) -> Option<Self>
       where Self: Sized;
}
Expand description

An extension trait for checking if a path exists.

Required Methods§

source

fn path_if_exists(self) -> Option<Self>
where Self: Sized,

Implementors§

source§

impl<P: AsRef<Path>> PathExt for P