pub enum NotIsomorphic {
NoOutputLeft(String),
NoOutputRight(String),
OutputSizeMismatch(String),
IoSizeMismatch(String),
NameSizeMismatch(String),
ValueSizeMismatch(Value, Value),
NetMismatch(Net, Net),
IoNetMismatch(IoNet, IoNet),
}
Variants§
NoOutputLeft(String)
NoOutputRight(String)
OutputSizeMismatch(String)
IoSizeMismatch(String)
NameSizeMismatch(String)
ValueSizeMismatch(Value, Value)
NetMismatch(Net, Net)
IoNetMismatch(IoNet, IoNet)
Trait Implementations§
Source§impl Debug for NotIsomorphic
impl Debug for NotIsomorphic
Auto Trait Implementations§
impl Freeze for NotIsomorphic
impl RefUnwindSafe for NotIsomorphic
impl Send for NotIsomorphic
impl Sync for NotIsomorphic
impl Unpin for NotIsomorphic
impl UnwindSafe for NotIsomorphic
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