pub enum ConnectionError {
InternalConnection(String),
SourceNodeNotFound(String),
TargetNodeNotFound(String),
NodesNotFound {
from: String,
to: String,
},
SourcePinNotFound {
node: String,
pin: String,
},
TargetPinNotFound {
node: String,
pin: String,
},
MismatchTypes {
from_node: String,
from_pin: String,
from_type_info: String,
to_node: String,
to_pin: String,
to_type_info: String,
},
MismatchPins {
from_node: String,
from_pin: String,
to_node: String,
to_pin: String,
},
CycleNodeFound(String),
Custom(Box<dyn Error>),
}
Variants§
InternalConnection(String)
SourceNodeNotFound(String)
TargetNodeNotFound(String)
NodesNotFound
SourcePinNotFound
TargetPinNotFound
MismatchTypes
Fields
MismatchPins
CycleNodeFound(String)
Custom(Box<dyn Error>)
Trait Implementations§
Source§impl Debug for ConnectionError
impl Debug for ConnectionError
Source§impl Display for ConnectionError
impl Display for ConnectionError
Source§impl Error for ConnectionError
impl Error for ConnectionError
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 ConnectionError
impl !RefUnwindSafe for ConnectionError
impl !Send for ConnectionError
impl !Sync for ConnectionError
impl Unpin for ConnectionError
impl !UnwindSafe for ConnectionError
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