pub struct SLTNodeFactsError {
pub invariant: &'static str,
pub node: NodeId,
pub message: String,
}Expand description
A structured failure produced while verifying an SLT node graph.
Fields§
§invariant: &'static str§node: NodeId§message: StringImplementations§
Trait Implementations§
Source§impl Clone for SLTNodeFactsError
impl Clone for SLTNodeFactsError
Source§fn clone(&self) -> SLTNodeFactsError
fn clone(&self) -> SLTNodeFactsError
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 SLTNodeFactsError
impl Debug for SLTNodeFactsError
Source§impl Display for SLTNodeFactsError
impl Display for SLTNodeFactsError
impl Eq for SLTNodeFactsError
Source§impl Error for SLTNodeFactsError
impl Error for SLTNodeFactsError
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 PartialEq for SLTNodeFactsError
impl PartialEq for SLTNodeFactsError
impl StructuralPartialEq for SLTNodeFactsError
Auto Trait Implementations§
impl Freeze for SLTNodeFactsError
impl RefUnwindSafe for SLTNodeFactsError
impl Send for SLTNodeFactsError
impl Sync for SLTNodeFactsError
impl Unpin for SLTNodeFactsError
impl UnsafeUnpin for SLTNodeFactsError
impl UnwindSafe for SLTNodeFactsError
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