pub struct UpdateRuntimeS3Settings {
pub endpoint: String,
pub region: String,
pub bucket: String,
pub prefix: String,
pub path_style: bool,
pub access_key: String,
pub secret_key: Option<String>,
}Fields§
§endpoint: String§region: String§bucket: String§prefix: String§path_style: bool§access_key: String§secret_key: Option<String>Trait Implementations§
Source§impl Clone for UpdateRuntimeS3Settings
impl Clone for UpdateRuntimeS3Settings
Source§fn clone(&self) -> UpdateRuntimeS3Settings
fn clone(&self) -> UpdateRuntimeS3Settings
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 ComposeSchema for UpdateRuntimeS3Settings
impl ComposeSchema for UpdateRuntimeS3Settings
Source§impl Debug for UpdateRuntimeS3Settings
impl Debug for UpdateRuntimeS3Settings
Source§impl<'de> Deserialize<'de> for UpdateRuntimeS3Settings
impl<'de> Deserialize<'de> for UpdateRuntimeS3Settings
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for UpdateRuntimeS3Settings
impl Serialize for UpdateRuntimeS3Settings
Auto Trait Implementations§
impl Freeze for UpdateRuntimeS3Settings
impl RefUnwindSafe for UpdateRuntimeS3Settings
impl Send for UpdateRuntimeS3Settings
impl Sync for UpdateRuntimeS3Settings
impl Unpin for UpdateRuntimeS3Settings
impl UnsafeUnpin for UpdateRuntimeS3Settings
impl UnwindSafe for UpdateRuntimeS3Settings
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