pub struct FileAdapter<P> { /* private fields */ }
Implementations§
Source§impl<P> FileAdapter<P>
impl<P> FileAdapter<P>
pub fn new(p: P) -> FileAdapter<P>
pub fn new_filtered_adapter(p: P) -> FileAdapter<P>
Trait Implementations§
Source§impl<P> Adapter for FileAdapter<P>
impl<P> Adapter for FileAdapter<P>
fn load_policy<'life0, 'life1, 'async_trait>(
&'life0 mut self,
m: &'life1 mut dyn Model,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn load_filtered_policy<'a, 'life0, 'life1, 'async_trait>(
&'life0 mut self,
m: &'life1 mut dyn Model,
f: Filter<'a>,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn save_policy<'life0, 'life1, 'async_trait>(
&'life0 mut self,
m: &'life1 mut dyn Model,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn clear_policy<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn add_policy<'life0, 'life1, 'life2, 'async_trait>(
&'life0 mut self,
_sec: &'life1 str,
_ptype: &'life2 str,
_rule: Vec<String>,
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn add_policies<'life0, 'life1, 'life2, 'async_trait>(
&'life0 mut self,
_sec: &'life1 str,
_ptype: &'life2 str,
_rules: Vec<Vec<String>>,
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn remove_policy<'life0, 'life1, 'life2, 'async_trait>(
&'life0 mut self,
_sec: &'life1 str,
_ptype: &'life2 str,
_rule: Vec<String>,
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn remove_policies<'life0, 'life1, 'life2, 'async_trait>(
&'life0 mut self,
_sec: &'life1 str,
_ptype: &'life2 str,
_rule: Vec<Vec<String>>,
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn remove_filtered_policy<'life0, 'life1, 'life2, 'async_trait>(
&'life0 mut self,
_sec: &'life1 str,
_ptype: &'life2 str,
_field_index: usize,
_field_values: Vec<String>,
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn is_filtered(&self) -> bool
Auto Trait Implementations§
impl<P> Freeze for FileAdapter<P>where
P: Freeze,
impl<P> RefUnwindSafe for FileAdapter<P>where
P: RefUnwindSafe,
impl<P> Send for FileAdapter<P>where
P: Send,
impl<P> Sync for FileAdapter<P>where
P: Sync,
impl<P> Unpin for FileAdapter<P>where
P: Unpin,
impl<P> UnwindSafe for FileAdapter<P>where
P: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more