pub struct HeadObject<'a> {
pub if_modified_since: Option<&'a str>,
pub if_unmodified_since: Option<&'a str>,
pub if_match: Option<&'a str>,
pub if_none_match: Option<&'a str>,
/* private fields */
}Fields§
§if_modified_since: Option<&'a str>§if_unmodified_since: Option<&'a str>§if_match: Option<&'a str>§if_none_match: Option<&'a str>Implementations§
Source§impl HeadObject<'_>
impl HeadObject<'_>
Source§impl<'a> HeadObject<'a>
impl<'a> HeadObject<'a>
Sourcepub fn builder(client: &'a Client) -> HeadObjectBuilder<'a>
pub fn builder(client: &'a Client) -> HeadObjectBuilder<'a>
Create an instance of HeadObject using the builder syntax
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for HeadObject<'a>
impl<'a> !RefUnwindSafe for HeadObject<'a>
impl<'a> Send for HeadObject<'a>
impl<'a> Sync for HeadObject<'a>
impl<'a> Unpin for HeadObject<'a>
impl<'a> UnsafeUnpin for HeadObject<'a>
impl<'a> !UnwindSafe for HeadObject<'a>
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