pub struct GetInfraStorageResponseS3 {
pub access_key_configured: bool,
pub bucket: Option<String>,
pub endpoint: Option<String>,
pub public_base_url: Option<String>,
pub region: Option<String>,
pub secret_key_configured: bool,
}Expand description
GetInfraStorageResponseS3
JSON schema
{
"type": "object",
"required": [
"accessKeyConfigured",
"bucket",
"endpoint",
"publicBaseUrl",
"region",
"secretKeyConfigured"
],
"properties": {
"accessKeyConfigured": {
"type": "boolean"
},
"bucket": {
"type": [
"string",
"null"
]
},
"endpoint": {
"type": [
"string",
"null"
]
},
"publicBaseUrl": {
"type": [
"string",
"null"
]
},
"region": {
"type": [
"string",
"null"
]
},
"secretKeyConfigured": {
"type": "boolean"
}
}
}Fields§
§access_key_configured: bool§bucket: Option<String>§endpoint: Option<String>§public_base_url: Option<String>§region: Option<String>§secret_key_configured: boolImplementations§
Source§impl GetInfraStorageResponseS3
impl GetInfraStorageResponseS3
pub fn builder() -> GetInfraStorageResponseS3
Trait Implementations§
Source§impl Clone for GetInfraStorageResponseS3
impl Clone for GetInfraStorageResponseS3
Source§fn clone(&self) -> GetInfraStorageResponseS3
fn clone(&self) -> GetInfraStorageResponseS3
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 GetInfraStorageResponseS3
impl Debug for GetInfraStorageResponseS3
Source§impl<'de> Deserialize<'de> for GetInfraStorageResponseS3
impl<'de> Deserialize<'de> for GetInfraStorageResponseS3
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 From<&GetInfraStorageResponseS3> for GetInfraStorageResponseS3
impl From<&GetInfraStorageResponseS3> for GetInfraStorageResponseS3
Source§fn from(value: &GetInfraStorageResponseS3) -> Self
fn from(value: &GetInfraStorageResponseS3) -> Self
Converts to this type from the input type.
Source§impl From<GetInfraStorageResponseS3> for GetInfraStorageResponseS3
impl From<GetInfraStorageResponseS3> for GetInfraStorageResponseS3
Source§fn from(value: GetInfraStorageResponseS3) -> Self
fn from(value: GetInfraStorageResponseS3) -> Self
Converts to this type from the input type.
Source§impl TryFrom<GetInfraStorageResponseS3> for GetInfraStorageResponseS3
impl TryFrom<GetInfraStorageResponseS3> for GetInfraStorageResponseS3
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: GetInfraStorageResponseS3) -> Result<Self, ConversionError>
fn try_from(value: GetInfraStorageResponseS3) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for GetInfraStorageResponseS3
impl RefUnwindSafe for GetInfraStorageResponseS3
impl Send for GetInfraStorageResponseS3
impl Sync for GetInfraStorageResponseS3
impl Unpin for GetInfraStorageResponseS3
impl UnsafeUnpin for GetInfraStorageResponseS3
impl UnwindSafe for GetInfraStorageResponseS3
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