pub struct Headers<'a>(/* private fields */);
Implementations§
source§impl<'a> Headers<'a>
impl<'a> Headers<'a>
sourcepub fn x_ms_client_request_id(&self) -> Result<&str>
pub fn x_ms_client_request_id(&self) -> Result<&str>
If a client request id header is sent in the request, this header will be present in the response with the same value.
sourcepub fn x_ms_request_id(&self) -> Result<&str>
pub fn x_ms_request_id(&self) -> Result<&str>
This header uniquely identifies the request that was made and can be used for troubleshooting the request.
sourcepub fn x_ms_version(&self) -> Result<&str>
pub fn x_ms_version(&self) -> Result<&str>
Indicates the version of the Blob service used to execute the request. This header is returned for requests made against version 2009-09-19 and newer.
Auto Trait Implementations§
impl<'a> Freeze for Headers<'a>
impl<'a> RefUnwindSafe for Headers<'a>
impl<'a> Send for Headers<'a>
impl<'a> Sync for Headers<'a>
impl<'a> Unpin for Headers<'a>
impl<'a> UnwindSafe for Headers<'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