pub struct HeadObjectOptions {
pub version_id: Option<String>,
pub if_modified_since: Option<String>,
pub if_unmodified_since: Option<String>,
pub if_match: Option<String>,
pub if_none_match: Option<String>,
}Expand description
Options for heading object
Official document: https://help.aliyun.com/zh/oss/developer-reference/headobject
Fields§
§version_id: Option<String>§if_modified_since: Option<String>§if_unmodified_since: Option<String>§if_match: Option<String>§if_none_match: Option<String>Trait Implementations§
Source§impl Clone for HeadObjectOptions
impl Clone for HeadObjectOptions
Source§fn clone(&self) -> HeadObjectOptions
fn clone(&self) -> HeadObjectOptions
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 HeadObjectOptions
impl Debug for HeadObjectOptions
Source§impl Default for HeadObjectOptions
impl Default for HeadObjectOptions
Source§fn default() -> HeadObjectOptions
fn default() -> HeadObjectOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HeadObjectOptions
impl<'de> Deserialize<'de> for HeadObjectOptions
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 HeadObjectOptions
impl RefUnwindSafe for HeadObjectOptions
impl Send for HeadObjectOptions
impl Sync for HeadObjectOptions
impl Unpin for HeadObjectOptions
impl UnsafeUnpin for HeadObjectOptions
impl UnwindSafe for HeadObjectOptions
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