pub struct S3Destination {
pub bucket: Option<String>,
pub prefix: Option<String>,
}Expand description
Describes the location of updated firmware in S3.
Fields§
§bucket: Option<String>The S3 bucket that contains the updated firmware.
prefix: Option<String>The S3 prefix.
Trait Implementations§
Source§impl Clone for S3Destination
impl Clone for S3Destination
Source§fn clone(&self) -> S3Destination
fn clone(&self) -> S3Destination
Returns a duplicate of the value. Read more
1.0.0 · 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 S3Destination
impl Debug for S3Destination
Source§impl Default for S3Destination
impl Default for S3Destination
Source§fn default() -> S3Destination
fn default() -> S3Destination
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for S3Destination
impl<'de> Deserialize<'de> for S3Destination
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 PartialEq for S3Destination
impl PartialEq for S3Destination
Source§impl Serialize for S3Destination
impl Serialize for S3Destination
impl StructuralPartialEq for S3Destination
Auto Trait Implementations§
impl Freeze for S3Destination
impl RefUnwindSafe for S3Destination
impl Send for S3Destination
impl Sync for S3Destination
impl Unpin for S3Destination
impl UnwindSafe for S3Destination
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