pub struct EwfHeaderMetadata {
pub description: String,
pub case_number: String,
pub evidence_number: String,
pub examiner_name: String,
pub acquisition_date: String,
pub system_date: String,
pub password_hash: String,
pub acquisition_software: String,
}Expand description
Acquisition metadata parsed from the zlib-compressed header section of an EWF v1 image.
Fields§
§description: String§case_number: String§evidence_number: String§examiner_name: String§acquisition_date: String§system_date: String§password_hash: String§acquisition_software: StringTrait Implementations§
Source§impl Clone for EwfHeaderMetadata
impl Clone for EwfHeaderMetadata
Source§fn clone(&self) -> EwfHeaderMetadata
fn clone(&self) -> EwfHeaderMetadata
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EwfHeaderMetadata
impl Debug for EwfHeaderMetadata
impl Eq for EwfHeaderMetadata
Source§impl PartialEq for EwfHeaderMetadata
impl PartialEq for EwfHeaderMetadata
impl StructuralPartialEq for EwfHeaderMetadata
Auto Trait Implementations§
impl Freeze for EwfHeaderMetadata
impl RefUnwindSafe for EwfHeaderMetadata
impl Send for EwfHeaderMetadata
impl Sync for EwfHeaderMetadata
impl Unpin for EwfHeaderMetadata
impl UnsafeUnpin for EwfHeaderMetadata
impl UnwindSafe for EwfHeaderMetadata
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more