pub struct FdrConfigError {
pub field: &'static str,
pub reason: &'static str,
}Expand description
FDR configuration error details
Fields§
§field: &'static str§reason: &'static strTrait Implementations§
Source§impl Clone for FdrConfigError
impl Clone for FdrConfigError
Source§fn clone(&self) -> FdrConfigError
fn clone(&self) -> FdrConfigError
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 FdrConfigError
impl Debug for FdrConfigError
Source§impl Display for FdrConfigError
impl Display for FdrConfigError
Source§impl PartialEq for FdrConfigError
impl PartialEq for FdrConfigError
impl Eq for FdrConfigError
impl StructuralPartialEq for FdrConfigError
Auto Trait Implementations§
impl Freeze for FdrConfigError
impl RefUnwindSafe for FdrConfigError
impl Send for FdrConfigError
impl Sync for FdrConfigError
impl Unpin for FdrConfigError
impl UnsafeUnpin for FdrConfigError
impl UnwindSafe for FdrConfigError
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