pub struct RestoreObjectInput { /* private fields */ }Implementations§
Source§impl RestoreObjectInput
impl RestoreObjectInput
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 RestoreObjectInput
impl RestoreObjectInput
pub fn new(bucket: impl Into<String>, key: impl Into<String>) -> Self
pub fn new_with_version_id( bucket: impl Into<String>, key: impl Into<String>, version_id: impl Into<String>, ) -> Self
pub fn bucket(&self) -> &str
pub fn key(&self) -> &str
pub fn version_id(&self) -> &str
pub fn days(&self) -> isize
pub fn restore_job_parameters(&self) -> &Option<RestoreJobParameters>
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_version_id(&mut self, version_id: impl Into<String>)
pub fn set_days(&mut self, days: isize)
pub fn set_restore_job_parameters( &mut self, restore_job_parameters: impl Into<RestoreJobParameters>, )
pub fn set_notification_custom_parameters( &mut self, notification_custom_parameters: impl Into<String>, )
Trait Implementations§
Source§impl Clone for RestoreObjectInput
impl Clone for RestoreObjectInput
Source§fn clone(&self) -> RestoreObjectInput
fn clone(&self) -> RestoreObjectInput
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 RestoreObjectInput
impl Debug for RestoreObjectInput
Source§impl Default for RestoreObjectInput
impl Default for RestoreObjectInput
Source§fn default() -> RestoreObjectInput
fn default() -> RestoreObjectInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for RestoreObjectInput
impl PartialEq for RestoreObjectInput
Source§impl Serialize for RestoreObjectInput
impl Serialize for RestoreObjectInput
impl StructuralPartialEq for RestoreObjectInput
Auto Trait Implementations§
impl Freeze for RestoreObjectInput
impl RefUnwindSafe for RestoreObjectInput
impl Send for RestoreObjectInput
impl Sync for RestoreObjectInput
impl Unpin for RestoreObjectInput
impl UnsafeUnpin for RestoreObjectInput
impl UnwindSafe for RestoreObjectInput
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