pub enum PortError {
NotFound(String),
DirectionMismatch {
expected: PortDirection,
got: PortDirection,
},
TypeMismatch {
expected: PortType,
got: PortType,
},
AlreadyConnected(String),
MaxConnectionsReached(String),
InvalidIndex(usize),
}Expand description
Errors that can occur during port operations
Variants§
NotFound(String)
Port not found
DirectionMismatch
Port direction mismatch (e.g., trying to connect output to output)
TypeMismatch
Port type mismatch (e.g., trying to connect audio to control)
AlreadyConnected(String)
Port already connected
MaxConnectionsReached(String)
Maximum connections reached
InvalidIndex(usize)
Invalid port index
Implementations§
Source§impl PortError
impl PortError
Sourcepub fn direction_mismatch(
expected: PortDirection,
got: PortDirection,
) -> PortError
pub fn direction_mismatch( expected: PortDirection, got: PortDirection, ) -> PortError
Create a new direction mismatch error
Sourcepub fn type_mismatch(expected: PortType, got: PortType) -> PortError
pub fn type_mismatch(expected: PortType, got: PortType) -> PortError
Create a new type mismatch error
Sourcepub fn already_connected(port: impl Display) -> PortError
pub fn already_connected(port: impl Display) -> PortError
Create a new already connected error
Trait Implementations§
Source§impl Error for PortError
impl Error for PortError
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<PortError> for ProcessError
impl From<PortError> for ProcessError
Source§fn from(err: PortError) -> ProcessError
fn from(err: PortError) -> ProcessError
Converts to this type from the input type.
impl Eq for PortError
impl StructuralPartialEq for PortError
Auto Trait Implementations§
impl Freeze for PortError
impl RefUnwindSafe for PortError
impl Send for PortError
impl Sync for PortError
impl Unpin for PortError
impl UnsafeUnpin for PortError
impl UnwindSafe for PortError
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