Struct kvproto::backup::S3[][src]

pub struct S3 {
    pub endpoint: String,
    pub region: String,
    pub bucket: String,
    pub prefix: String,
    pub storage_class: String,
    pub sse: String,
    pub acl: String,
    pub access_key: String,
    pub secret_access_key: String,
    pub force_path_style: bool,
    pub sse_kms_key_id: String,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

endpoint: Stringregion: Stringbucket: Stringprefix: Stringstorage_class: Stringsse: Stringacl: Stringaccess_key: Stringsecret_access_key: Stringforce_path_style: boolsse_kms_key_id: Stringunknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl S3[src]

pub fn new() -> S3[src]

pub fn get_endpoint(&self) -> &str[src]

pub fn clear_endpoint(&mut self)[src]

pub fn set_endpoint(&mut self, v: String)[src]

pub fn mut_endpoint(&mut self) -> &mut String[src]

pub fn take_endpoint(&mut self) -> String[src]

pub fn get_region(&self) -> &str[src]

pub fn clear_region(&mut self)[src]

pub fn set_region(&mut self, v: String)[src]

pub fn mut_region(&mut self) -> &mut String[src]

pub fn take_region(&mut self) -> String[src]

pub fn get_bucket(&self) -> &str[src]

pub fn clear_bucket(&mut self)[src]

pub fn set_bucket(&mut self, v: String)[src]

pub fn mut_bucket(&mut self) -> &mut String[src]

pub fn take_bucket(&mut self) -> String[src]

pub fn get_prefix(&self) -> &str[src]

pub fn clear_prefix(&mut self)[src]

pub fn set_prefix(&mut self, v: String)[src]

pub fn mut_prefix(&mut self) -> &mut String[src]

pub fn take_prefix(&mut self) -> String[src]

pub fn get_storage_class(&self) -> &str[src]

pub fn clear_storage_class(&mut self)[src]

pub fn set_storage_class(&mut self, v: String)[src]

pub fn mut_storage_class(&mut self) -> &mut String[src]

pub fn take_storage_class(&mut self) -> String[src]

pub fn get_sse(&self) -> &str[src]

pub fn clear_sse(&mut self)[src]

pub fn set_sse(&mut self, v: String)[src]

pub fn mut_sse(&mut self) -> &mut String[src]

pub fn take_sse(&mut self) -> String[src]

pub fn get_acl(&self) -> &str[src]

pub fn clear_acl(&mut self)[src]

pub fn set_acl(&mut self, v: String)[src]

pub fn mut_acl(&mut self) -> &mut String[src]

pub fn take_acl(&mut self) -> String[src]

pub fn get_access_key(&self) -> &str[src]

pub fn clear_access_key(&mut self)[src]

pub fn set_access_key(&mut self, v: String)[src]

pub fn mut_access_key(&mut self) -> &mut String[src]

pub fn take_access_key(&mut self) -> String[src]

pub fn get_secret_access_key(&self) -> &str[src]

pub fn clear_secret_access_key(&mut self)[src]

pub fn set_secret_access_key(&mut self, v: String)[src]

pub fn mut_secret_access_key(&mut self) -> &mut String[src]

pub fn take_secret_access_key(&mut self) -> String[src]

pub fn get_force_path_style(&self) -> bool[src]

pub fn clear_force_path_style(&mut self)[src]

pub fn set_force_path_style(&mut self, v: bool)[src]

pub fn get_sse_kms_key_id(&self) -> &str[src]

pub fn clear_sse_kms_key_id(&mut self)[src]

pub fn set_sse_kms_key_id(&mut self, v: String)[src]

pub fn mut_sse_kms_key_id(&mut self) -> &mut String[src]

pub fn take_sse_kms_key_id(&mut self) -> String[src]

Trait Implementations

impl Clear for S3[src]

impl Clone for S3[src]

impl Debug for S3[src]

impl Default for S3[src]

impl<'a> Default for &'a S3[src]

impl Message for S3[src]

impl PartialEq<S3> for S3[src]

impl PbPrint for S3[src]

impl ProtobufValue for S3[src]

impl StructuralPartialEq for S3[src]

Auto Trait Implementations

impl RefUnwindSafe for S3

impl Send for S3

impl Sync for S3

impl Unpin for S3

impl UnwindSafe for S3

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.