pub struct DigestPart {
pub algorithm: String,
pub digest: String,
}
Expand description
A parsed digest from the request
Fields§
§algorithm: String
The alrogithm used to produce the digest
digest: String
The digest itself
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DigestPart
impl RefUnwindSafe for DigestPart
impl Send for DigestPart
impl Sync for DigestPart
impl Unpin for DigestPart
impl UnwindSafe for DigestPart
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