pub struct RemoteS3StorageBinding {
pub bucket_name: String,
}Expand description
Concrete S3 topology returned to remote clients.
JSON schema
{
"description": "Concrete S3 topology returned to remote clients.",
"type": "object",
"required": [
"bucketName"
],
"properties": {
"bucketName": {
"description": "S3 bucket name authorized by the credential lease.",
"type": "string"
}
},
"additionalProperties": false
}Fields§
§bucket_name: StringS3 bucket name authorized by the credential lease.
Implementations§
Source§impl RemoteS3StorageBinding
impl RemoteS3StorageBinding
pub fn builder() -> RemoteS3StorageBinding
Trait Implementations§
Source§impl Clone for RemoteS3StorageBinding
impl Clone for RemoteS3StorageBinding
Source§fn clone(&self) -> RemoteS3StorageBinding
fn clone(&self) -> RemoteS3StorageBinding
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 RemoteS3StorageBinding
impl Debug for RemoteS3StorageBinding
Source§impl<'de> Deserialize<'de> for RemoteS3StorageBinding
impl<'de> Deserialize<'de> for RemoteS3StorageBinding
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<&RemoteS3StorageBinding> for RemoteS3StorageBinding
impl From<&RemoteS3StorageBinding> for RemoteS3StorageBinding
Source§fn from(value: &RemoteS3StorageBinding) -> Self
fn from(value: &RemoteS3StorageBinding) -> Self
Converts to this type from the input type.
Source§impl From<RemoteS3StorageBinding> for RemoteS3StorageBinding
impl From<RemoteS3StorageBinding> for RemoteS3StorageBinding
Source§fn from(value: RemoteS3StorageBinding) -> Self
fn from(value: RemoteS3StorageBinding) -> Self
Converts to this type from the input type.
Source§impl Serialize for RemoteS3StorageBinding
impl Serialize for RemoteS3StorageBinding
Source§impl TryFrom<RemoteS3StorageBinding> for RemoteS3StorageBinding
impl TryFrom<RemoteS3StorageBinding> for RemoteS3StorageBinding
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: RemoteS3StorageBinding) -> Result<Self, ConversionError>
fn try_from(value: RemoteS3StorageBinding) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for RemoteS3StorageBinding
impl RefUnwindSafe for RemoteS3StorageBinding
impl Send for RemoteS3StorageBinding
impl Sync for RemoteS3StorageBinding
impl Unpin for RemoteS3StorageBinding
impl UnsafeUnpin for RemoteS3StorageBinding
impl UnwindSafe for RemoteS3StorageBinding
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