pub struct S3CopyParams {
pub s3_copy_files: Vec<S3CopyFile>,
pub aws_key: String,
pub aws_secret: String,
}Expand description
Parameters describing how to copy an S3 file.
Fields§
§s3_copy_files: Vec<S3CopyFile>S3 Files to copy.
aws_key: StringAWS key to use to download file.
aws_secret: StringAWS secret to use to download file.
Trait Implementations§
Source§impl Clone for S3CopyParams
impl Clone for S3CopyParams
Source§fn clone(&self) -> S3CopyParams
fn clone(&self) -> S3CopyParams
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 S3CopyParams
impl Debug for S3CopyParams
Source§impl<'de> Deserialize<'de> for S3CopyParams
impl<'de> Deserialize<'de> for S3CopyParams
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
Auto Trait Implementations§
impl Freeze for S3CopyParams
impl RefUnwindSafe for S3CopyParams
impl Send for S3CopyParams
impl Sync for S3CopyParams
impl Unpin for S3CopyParams
impl UnwindSafe for S3CopyParams
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