pub struct HashList {
pub hashes: Vec<String>,
pub algorithm: Algorithm,
}
Expand description
HashList : A list of hashes and the algorithm used to create them
Fields§
§hashes: Vec<String>
§algorithm: Algorithm
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for HashList
impl<'de> Deserialize<'de> for HashList
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
impl StructuralPartialEq for HashList
Auto Trait Implementations§
impl Freeze for HashList
impl RefUnwindSafe for HashList
impl Send for HashList
impl Sync for HashList
impl Unpin for HashList
impl UnwindSafe for HashList
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