Struct dynamodb_adapter::DynamoDBAdapter
source · [−]pub struct DynamoDBAdapter { /* private fields */ }
Implementations
Trait Implementations
sourceimpl Adapter for DynamoDBAdapter
impl Adapter for DynamoDBAdapter
fn load_policy<'life0, 'life1, 'async_trait>(
&'life0 self,
m: &'life1 mut dyn Model
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait,
fn load_filtered_policy<'f, 'life0, 'life1, 'async_trait>(
&'life0 mut self,
m: &'life1 mut dyn Model,
f: Filter<'f>
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
'f: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Self: '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
'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait,
fn clear_policy<'life0, 'async_trait>(
&'life0 mut self
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
'life0: 'async_trait,
Self: 'async_trait,
fn is_filtered(&self) -> bool
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
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Self: '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
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Self: '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
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Self: 'async_trait,
fn remove_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
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Self: '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
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Self: 'async_trait,
Auto Trait Implementations
impl !RefUnwindSafe for DynamoDBAdapter
impl Send for DynamoDBAdapter
impl Sync for DynamoDBAdapter
impl Unpin for DynamoDBAdapter
impl !UnwindSafe for DynamoDBAdapter
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more