Trait stemflow::Access
[−]
[src]
pub trait Access: Deref<Target=FileAccess> + Clone + Debug + Eq + Ord + Sized { fn new(inner: FileAccess) -> Self; fn new_intersect(&self, access: Self) -> Option<Self> { ... } fn new_intersect_all(&self, other: Vec<Self>) -> Option<Vec<Self>> { ... } }
Required Methods
fn new(inner: FileAccess) -> Self
Provided Methods
fn new_intersect(&self, access: Self) -> Option<Self>
fn new_intersect_all(&self, other: Vec<Self>) -> Option<Vec<Self>>
Implementors
impl Access for Arc<FileAccess>
impl Access for Rc<FileAccess>