pub enum OfErrorType {
HelloFailed,
BadRequest,
BadAction,
BadInstruction,
BadMatch,
FlowModFailed,
GroupModFailed,
PortModFailed,
TableModFailed,
MeterModFailed,
TableFeaturesFailed,
Unknown(u16),
}Expand description
OpenFlow error types (OF 1.3).
Variants§
HelloFailed
Hello protocol failed
BadRequest
Request was not understood
BadAction
Error in action description
BadInstruction
Error in instruction list
BadMatch
Error in match
FlowModFailed
Problem modifying flow entry
GroupModFailed
Problem modifying group entry
PortModFailed
Port mod request failed
TableModFailed
Table mod request failed
MeterModFailed
Meter mod request failed
TableFeaturesFailed
Table features request failed
Unknown(u16)
Unknown error type
Trait Implementations§
Source§impl Clone for OfErrorType
impl Clone for OfErrorType
Source§fn clone(&self) -> OfErrorType
fn clone(&self) -> OfErrorType
Returns a duplicate of the value. Read more
1.0.0 · 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 OfErrorType
impl Debug for OfErrorType
Source§impl Display for OfErrorType
impl Display for OfErrorType
Source§impl From<u16> for OfErrorType
impl From<u16> for OfErrorType
Source§impl PartialEq for OfErrorType
impl PartialEq for OfErrorType
impl Copy for OfErrorType
impl Eq for OfErrorType
impl StructuralPartialEq for OfErrorType
Auto Trait Implementations§
impl Freeze for OfErrorType
impl RefUnwindSafe for OfErrorType
impl Send for OfErrorType
impl Sync for OfErrorType
impl Unpin for OfErrorType
impl UnsafeUnpin for OfErrorType
impl UnwindSafe for OfErrorType
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