pub struct FwdDepError {
    subject: Handle<()>,
    subject_kind: &'static str,
    depends_on: Handle<()>,
    depends_on_kind: &'static str,
}Fields§
§subject: Handle<()>§subject_kind: &'static str§depends_on: Handle<()>§depends_on_kind: &'static strTrait Implementations§
Source§impl Clone for FwdDepError
 
impl Clone for FwdDepError
Source§fn clone(&self) -> FwdDepError
 
fn clone(&self) -> FwdDepError
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 FwdDepError
 
impl Debug for FwdDepError
Source§impl Display for FwdDepError
 
impl Display for FwdDepError
Source§impl Error for FwdDepError
 
impl Error for FwdDepError
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()
Source§impl From<FwdDepError> for InvalidHandleError
 
impl From<FwdDepError> for InvalidHandleError
Source§fn from(source: FwdDepError) -> Self
 
fn from(source: FwdDepError) -> Self
Converts to this type from the input type.
Source§impl From<FwdDepError> for ValidationError
 
impl From<FwdDepError> for ValidationError
Source§fn from(source: FwdDepError) -> Self
 
fn from(source: FwdDepError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FwdDepError
impl RefUnwindSafe for FwdDepError
impl Send for FwdDepError
impl Sync for FwdDepError
impl Unpin for FwdDepError
impl UnwindSafe for FwdDepError
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