pub struct ChangeRootSuccess {
pub info_lines: Vec<String>,
pub warning_lines: Vec<String>,
pub file_warning_lines: Option<Vec<String>>,
}
Fields§
§info_lines: Vec<String>
Printable info lines
warning_lines: Vec<String>
Printable warning lines
file_warning_lines: Option<Vec<String>>
Printable warning lines about the hashdeep log file, if any were emitted
Trait Implementations§
Source§impl Clone for ChangeRootSuccess
impl Clone for ChangeRootSuccess
Source§fn clone(&self) -> ChangeRootSuccess
fn clone(&self) -> ChangeRootSuccess
Returns a duplicate of the value. Read more
1.0.0 · 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 ChangeRootSuccess
impl Debug for ChangeRootSuccess
Source§impl Default for ChangeRootSuccess
impl Default for ChangeRootSuccess
Source§fn default() -> ChangeRootSuccess
fn default() -> ChangeRootSuccess
Returns the “default value” for a type. Read more
Source§impl Hash for ChangeRootSuccess
impl Hash for ChangeRootSuccess
Source§impl Ord for ChangeRootSuccess
impl Ord for ChangeRootSuccess
Source§fn cmp(&self, other: &ChangeRootSuccess) -> Ordering
fn cmp(&self, other: &ChangeRootSuccess) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ChangeRootSuccess
impl PartialEq for ChangeRootSuccess
Source§impl PartialOrd for ChangeRootSuccess
impl PartialOrd for ChangeRootSuccess
impl Eq for ChangeRootSuccess
impl StructuralPartialEq for ChangeRootSuccess
Auto Trait Implementations§
impl Freeze for ChangeRootSuccess
impl RefUnwindSafe for ChangeRootSuccess
impl Send for ChangeRootSuccess
impl Sync for ChangeRootSuccess
impl Unpin for ChangeRootSuccess
impl UnwindSafe for ChangeRootSuccess
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<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