pub struct CFormatError {
pub typ: CFormatErrorType,
pub index: usize,
}
Fields§
§typ: CFormatErrorType
§index: usize
Trait Implementations§
Source§impl Debug for CFormatError
impl Debug for CFormatError
Source§impl Display for CFormatError
impl Display for CFormatError
Source§impl PartialEq for CFormatError
impl PartialEq for CFormatError
impl StructuralPartialEq for CFormatError
Auto Trait Implementations§
impl Freeze for CFormatError
impl RefUnwindSafe for CFormatError
impl Send for CFormatError
impl Sync for CFormatError
impl Unpin for CFormatError
impl UnwindSafe for CFormatError
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