pub struct HeadObjectInput { /* private fields */ }Implementations§
Source§impl HeadObjectInput
impl HeadObjectInput
pub fn if_match(&self) -> &str
pub fn if_modified_since(&self) -> Option<DateTime<Utc>>
pub fn if_none_match(&self) -> &str
pub fn if_unmodified_since(&self) -> Option<DateTime<Utc>>
pub fn set_if_match(&mut self, if_match: impl Into<String>)
pub fn set_if_modified_since( &mut self, if_modified_since: impl Into<DateTime<Utc>>, )
pub fn set_if_none_match(&mut self, if_none_match: impl Into<String>)
pub fn set_if_unmodified_since( &mut self, if_unmodified_since: impl Into<DateTime<Utc>>, )
Source§impl HeadObjectInput
impl HeadObjectInput
pub fn ssec_algorithm(&self) -> &str
pub fn ssec_key(&self) -> &str
pub fn ssec_key_md5(&self) -> &str
pub fn set_ssec_algorithm(&mut self, ssec_algorithm: impl Into<String>)
pub fn set_ssec_key(&mut self, ssec_key: impl Into<String>)
pub fn set_ssec_key_md5(&mut self, ssec_key_md5: impl Into<String>)
Source§impl HeadObjectInput
impl HeadObjectInput
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 HeadObjectInput
impl HeadObjectInput
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 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>)
Trait Implementations§
Source§impl Clone for HeadObjectInput
impl Clone for HeadObjectInput
Source§fn clone(&self) -> HeadObjectInput
fn clone(&self) -> HeadObjectInput
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 HeadObjectInput
impl Debug for HeadObjectInput
Source§impl Default for HeadObjectInput
impl Default for HeadObjectInput
Source§fn default() -> HeadObjectInput
fn default() -> HeadObjectInput
Returns the “default value” for a type. Read more
Source§impl GenericInputTrait for HeadObjectInput
impl GenericInputTrait for HeadObjectInput
Source§impl PartialEq for HeadObjectInput
impl PartialEq for HeadObjectInput
impl StructuralPartialEq for HeadObjectInput
Auto Trait Implementations§
impl Freeze for HeadObjectInput
impl RefUnwindSafe for HeadObjectInput
impl Send for HeadObjectInput
impl Sync for HeadObjectInput
impl Unpin for HeadObjectInput
impl UnsafeUnpin for HeadObjectInput
impl UnwindSafe for HeadObjectInput
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