pub struct PortabilityError {
pub path: String,
pub message: String,
}Fields§
§path: String§message: StringTrait Implementations§
Source§impl Clone for PortabilityError
impl Clone for PortabilityError
Source§fn clone(&self) -> PortabilityError
fn clone(&self) -> PortabilityError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PortabilityError
impl Debug for PortabilityError
Source§impl Display for PortabilityError
impl Display for PortabilityError
Source§impl Error for PortabilityError
impl Error for PortabilityError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for PortabilityError
impl RefUnwindSafe for PortabilityError
impl Send for PortabilityError
impl Sync for PortabilityError
impl Unpin for PortabilityError
impl UnsafeUnpin for PortabilityError
impl UnwindSafe for PortabilityError
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