pub enum ReadinessSeverity {
Blocker,
Warning,
}Expand description
Severity of an electrical-readiness finding.
Variants§
Blocker
The network must not be passed to numerical lowering or solving.
Warning
The network can be used, but the caller should inspect the finding.
Trait Implementations§
Source§impl Clone for ReadinessSeverity
impl Clone for ReadinessSeverity
Source§fn clone(&self) -> ReadinessSeverity
fn clone(&self) -> ReadinessSeverity
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 moreimpl Copy for ReadinessSeverity
Source§impl Debug for ReadinessSeverity
impl Debug for ReadinessSeverity
impl Eq for ReadinessSeverity
Source§impl PartialEq for ReadinessSeverity
impl PartialEq for ReadinessSeverity
Source§fn eq(&self, other: &ReadinessSeverity) -> bool
fn eq(&self, other: &ReadinessSeverity) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ReadinessSeverity
Auto Trait Implementations§
impl Freeze for ReadinessSeverity
impl RefUnwindSafe for ReadinessSeverity
impl Send for ReadinessSeverity
impl Sync for ReadinessSeverity
impl Unpin for ReadinessSeverity
impl UnsafeUnpin for ReadinessSeverity
impl UnwindSafe for ReadinessSeverity
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