Struct xmpp::store::blob::BlobStoreFS
source · pub struct BlobStoreFS { /* private fields */ }
Implementations§
source§impl BlobStoreFS
impl BlobStoreFS
pub async fn new(basedir: PathBuf) -> Result<BlobStoreFS, StoreError>
pub async fn from_standards(dirname: &str) -> Result<BlobStoreFS, StoreError>
sourcepub fn sanitize_key(key: &str) -> String
pub fn sanitize_key(key: &str) -> String
Removes slashes from a key by urlencoding it. Prevents path traversal in the file store.
Trait Implementations§
source§impl BlobStoreInterface for BlobStoreFS
impl BlobStoreInterface for BlobStoreFS
source§fn table<'life0, 'life1, 'async_trait>(
&'life0 self,
table: &'life1 BlobTable
) -> Pin<Box<dyn Future<Output = Result<Box<dyn BlobTableInterface<'_>>, StoreError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn table<'life0, 'life1, 'async_trait>(
&'life0 self,
table: &'life1 BlobTable
) -> Pin<Box<dyn Future<Output = Result<Box<dyn BlobTableInterface<'_>>, StoreError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Retrieve a specific
BlobTable
, that implements BlobTableInterface
, inside the data store.source§fn get_in_table<'a, 'life0, 'async_trait>(
&'a self,
entry: &'life0 BlobEntry
) -> Pin<Box<dyn Future<Output = Result<Cow<'a, [u8]>, StoreError>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn get_in_table<'a, 'life0, 'async_trait>(
&'a self,
entry: &'life0 BlobEntry
) -> Pin<Box<dyn Future<Output = Result<Cow<'a, [u8]>, StoreError>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
Gets a specific
BlobEntry
from the blob store.source§fn set_in_table<'life0, 'life1, 'life2, 'async_trait>(
&'life0 mut self,
entry: &'life1 BlobEntry,
value: &'life2 [u8]
) -> Pin<Box<dyn Future<Output = Result<(), StoreError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn set_in_table<'life0, 'life1, 'life2, 'async_trait>(
&'life0 mut self,
entry: &'life1 BlobEntry,
value: &'life2 [u8]
) -> Pin<Box<dyn Future<Output = Result<(), StoreError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Sets a specific
BlobEntry
in the data store.source§fn table_option<'life0, 'life1, 'async_trait>(
&'life0 self,
table: &'life1 BlobTable
) -> Pin<Box<dyn Future<Output = Option<Box<dyn BlobTableInterface<'_>>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn table_option<'life0, 'life1, 'async_trait>(
&'life0 self,
table: &'life1 BlobTable
) -> Pin<Box<dyn Future<Output = Option<Box<dyn BlobTableInterface<'_>>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Retrieve a specific
BlobTable
, logging the error if it fails.source§impl<'a> BlobTableInterface<'a> for BlobStoreFS
impl<'a> BlobTableInterface<'a> for BlobStoreFS
fn has<'life0, 'life1, 'async_trait>(
&'life0 self,
key: &'life1 str
) -> Pin<Box<dyn Future<Output = Result<bool, StoreError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn get<'life0, 'life1, 'async_trait>(
&'life0 self,
key: &'life1 str
) -> Pin<Box<dyn Future<Output = Result<Cow<'a, [u8]>, StoreError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn set<'life0, 'life1, 'life2, 'async_trait>(
&'life0 mut self,
key: &'life1 str,
value: &'life2 [u8]
) -> Pin<Box<dyn Future<Output = Result<(), StoreError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn delete<'life0, 'life1, 'async_trait>(
&'life0 mut self,
key: &'life1 str
) -> Pin<Box<dyn Future<Output = Result<(), StoreError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn delete_all<'life0, 'async_trait>(
&'life0 mut self
) -> Pin<Box<dyn Future<Output = Result<(), StoreError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn list<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<Vec<String>, StoreError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
source§impl Clone for BlobStoreFS
impl Clone for BlobStoreFS
source§fn clone(&self) -> BlobStoreFS
fn clone(&self) -> BlobStoreFS
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl RefUnwindSafe for BlobStoreFS
impl Send for BlobStoreFS
impl Sync for BlobStoreFS
impl Unpin for BlobStoreFS
impl UnwindSafe for BlobStoreFS
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