pub struct SetObjectTimeInput { /* private fields */ }Implementations§
Source§impl SetObjectTimeInput
impl SetObjectTimeInput
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 SetObjectTimeInput
impl SetObjectTimeInput
pub fn new( bucket: impl Into<String>, key: impl Into<String>, modify_timestamp: impl Into<DateTime<Utc>>, ) -> Self
pub fn bucket(&self) -> &str
pub fn key(&self) -> &str
pub fn modify_timestamp(&self) -> DateTime<Utc>
pub fn set_bucket(&mut self, bucket: impl Into<String>)
pub fn set_key(&mut self, key: impl Into<String>)
pub fn set_modify_timestamp( &mut self, modify_timestamp: impl Into<DateTime<Utc>>, )
Trait Implementations§
Source§impl Clone for SetObjectTimeInput
impl Clone for SetObjectTimeInput
Source§fn clone(&self) -> SetObjectTimeInput
fn clone(&self) -> SetObjectTimeInput
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 SetObjectTimeInput
impl Debug for SetObjectTimeInput
Source§impl Default for SetObjectTimeInput
impl Default for SetObjectTimeInput
Source§fn default() -> SetObjectTimeInput
fn default() -> SetObjectTimeInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for SetObjectTimeInput
impl PartialEq for SetObjectTimeInput
impl StructuralPartialEq for SetObjectTimeInput
Auto Trait Implementations§
impl Freeze for SetObjectTimeInput
impl RefUnwindSafe for SetObjectTimeInput
impl Send for SetObjectTimeInput
impl Sync for SetObjectTimeInput
impl Unpin for SetObjectTimeInput
impl UnsafeUnpin for SetObjectTimeInput
impl UnwindSafe for SetObjectTimeInput
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