pub struct InputFailure {
pub path: String,
pub reason: String,
}Expand description
Record of an input that failed to load.
Fields§
§path: String§reason: StringTrait Implementations§
Source§impl Clone for InputFailure
impl Clone for InputFailure
Source§fn clone(&self) -> InputFailure
fn clone(&self) -> InputFailure
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 InputFailure
impl Debug for InputFailure
Source§impl<'de> Deserialize<'de> for InputFailure
impl<'de> Deserialize<'de> for InputFailure
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for InputFailure
impl RefUnwindSafe for InputFailure
impl Send for InputFailure
impl Sync for InputFailure
impl Unpin for InputFailure
impl UnsafeUnpin for InputFailure
impl UnwindSafe for InputFailure
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