pub struct ColdStoreInfo {
pub backend: &'static str,
pub root: Option<String>,
pub bucket: Option<String>,
pub region: Option<String>,
pub endpoint: Option<String>,
pub encryption: Option<&'static str>,
}Fields§
§backend: &'static str§root: Option<String>§bucket: Option<String>§region: Option<String>§endpoint: Option<String>§encryption: Option<&'static str>Server-side encryption mode applied to object writes (S3 backend only).
Trait Implementations§
Source§impl Clone for ColdStoreInfo
impl Clone for ColdStoreInfo
Source§fn clone(&self) -> ColdStoreInfo
fn clone(&self) -> ColdStoreInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ColdStoreInfo
impl Debug for ColdStoreInfo
impl Eq for ColdStoreInfo
Source§impl PartialEq for ColdStoreInfo
impl PartialEq for ColdStoreInfo
impl StructuralPartialEq for ColdStoreInfo
Auto Trait Implementations§
impl Freeze for ColdStoreInfo
impl RefUnwindSafe for ColdStoreInfo
impl Send for ColdStoreInfo
impl Sync for ColdStoreInfo
impl Unpin for ColdStoreInfo
impl UnsafeUnpin for ColdStoreInfo
impl UnwindSafe for ColdStoreInfo
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