pub struct RenameObjectInput { /* private fields */ }Implementations§
Source§impl RenameObjectInput
impl RenameObjectInput
pub fn request_date(&self) -> Option<DateTime<Utc>>
pub fn request_host(&self) -> &str
pub fn request_header(&self) -> &Option<HashMap<String, String>>
pub fn request_query(&self) -> &Option<HashMap<String, String>>
pub fn set_request_date(&mut self, request_date: impl Into<DateTime<Utc>>)
pub fn set_request_host(&mut self, request_host: impl Into<String>)
pub fn set_request_header( &mut self, request_header: impl Into<HashMap<String, String>>, )
pub fn set_request_query( &mut self, request_query: impl Into<HashMap<String, String>>, )
Source§impl RenameObjectInput
impl RenameObjectInput
pub fn new( bucket: impl Into<String>, key: impl Into<String>, new_key: impl Into<String>, ) -> Self
pub fn bucket(&self) -> &str
pub fn key(&self) -> &str
pub fn new_key(&self) -> &str
pub fn recursive_mkdir(&self) -> bool
pub fn forbid_overwrite(&self) -> bool
pub fn notification_custom_parameters(&self) -> &str
pub fn set_bucket(&mut self, bucket: impl Into<String>)
pub fn set_key(&mut self, key: impl Into<String>)
pub fn set_new_key(&mut self, new_key: impl Into<String>)
pub fn set_recursive_mkdir(&mut self, recursive_mkdir: bool)
pub fn set_forbid_overwrite(&mut self, forbid_overwrite: bool)
pub fn set_notification_custom_parameters( &mut self, notification_custom_parameters: impl Into<String>, )
Trait Implementations§
Source§impl Clone for RenameObjectInput
impl Clone for RenameObjectInput
Source§fn clone(&self) -> RenameObjectInput
fn clone(&self) -> RenameObjectInput
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 RenameObjectInput
impl Debug for RenameObjectInput
Source§impl Default for RenameObjectInput
impl Default for RenameObjectInput
Source§fn default() -> RenameObjectInput
fn default() -> RenameObjectInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for RenameObjectInput
impl PartialEq for RenameObjectInput
impl StructuralPartialEq for RenameObjectInput
Auto Trait Implementations§
impl Freeze for RenameObjectInput
impl RefUnwindSafe for RenameObjectInput
impl Send for RenameObjectInput
impl Sync for RenameObjectInput
impl Unpin for RenameObjectInput
impl UnsafeUnpin for RenameObjectInput
impl UnwindSafe for RenameObjectInput
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