pub struct RusotoS3 { /* private fields */ }Expand description
Persist the data in an AWS S3 bucket.
To use it, make sure to activate the cargo feature "rusoto_s3" in your Cargo.toml.
§Example
use std::sync::Arc;
use std::time::Duration;
use feattle_core::{feattles, Feattles};
use feattle_sync::RusotoS3;
use rusoto_s3::S3Client;
use rusoto_core::Region;
feattles! {
struct MyToggles {
a: bool,
}
}
// Create a S3 client, read more at the official documentation https://www.rusoto.org
let s3_client = S3Client::new(Region::default());
let timeout = Duration::from_secs(10);
let persistence = Arc::new(RusotoS3::new(
s3_client,
"my-bucket".to_owned(),
"some/s3/prefix/".to_owned(),
timeout,
));
let my_toggles = MyToggles::new(persistence);Implementations§
Trait Implementations§
Source§impl Persist for RusotoS3
impl Persist for RusotoS3
Source§fn save_current<'life0, 'life1, 'async_trait>(
&'life0 self,
value: &'life1 CurrentValues,
) -> Pin<Box<dyn Future<Output = Result<(), BoxError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn save_current<'life0, 'life1, 'async_trait>(
&'life0 self,
value: &'life1 CurrentValues,
) -> Pin<Box<dyn Future<Output = Result<(), BoxError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Save current state of all feattles.
Source§fn load_current<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<Option<CurrentValues>, BoxError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn load_current<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<Option<CurrentValues>, BoxError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Load the current state of all feattles. With no previous state existed,
Ok(None) should be
returned.Source§fn save_history<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
key: &'life1 str,
value: &'life2 ValueHistory,
) -> Pin<Box<dyn Future<Output = Result<(), BoxError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn save_history<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
key: &'life1 str,
value: &'life2 ValueHistory,
) -> Pin<Box<dyn Future<Output = Result<(), BoxError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Save the full history of a single feattle.
Source§fn load_history<'life0, 'life1, 'async_trait>(
&'life0 self,
key: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<Option<ValueHistory>, BoxError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn load_history<'life0, 'life1, 'async_trait>(
&'life0 self,
key: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<Option<ValueHistory>, BoxError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Load the full history of a single feattle. With the feattle has no history,
Ok(None)
should be returned.Auto Trait Implementations§
impl Freeze for RusotoS3
impl !RefUnwindSafe for RusotoS3
impl Send for RusotoS3
impl Sync for RusotoS3
impl Unpin for RusotoS3
impl !UnwindSafe for RusotoS3
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.