pub type HeadResponse = Option<Metadata>;
The result from a successful head() call.
head()
Returns Some(metadata) if the object exists, None otherwise.
Some(metadata)
None
pub enum HeadResponse { None, Some(Metadata), }
No value.
Some value of type T.
T