pub struct YoctoFailureLog {
pub name: String,
pub contents: String,
}Fields§
§name: String§contents: StringTrait Implementations§
Source§impl Debug for YoctoFailureLog
impl Debug for YoctoFailureLog
Source§impl Ord for YoctoFailureLog
impl Ord for YoctoFailureLog
Source§fn cmp(&self, other: &YoctoFailureLog) -> Ordering
fn cmp(&self, other: &YoctoFailureLog) -> 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 YoctoFailureLog
impl PartialEq for YoctoFailureLog
Source§impl PartialOrd for YoctoFailureLog
impl PartialOrd for YoctoFailureLog
impl Eq for YoctoFailureLog
impl StructuralPartialEq for YoctoFailureLog
Auto Trait Implementations§
impl Freeze for YoctoFailureLog
impl RefUnwindSafe for YoctoFailureLog
impl Send for YoctoFailureLog
impl Sync for YoctoFailureLog
impl Unpin for YoctoFailureLog
impl UnwindSafe for YoctoFailureLog
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> 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