pub struct OfError {
pub error_type: OfErrorType,
pub code: u16,
pub data: Vec<u8>,
}Expand description
OpenFlow error message from the switch.
Fields§
§error_type: OfErrorTypeError type
code: u16Error code (type-specific)
data: Vec<u8>Original request data (up to 64 bytes)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for OfError
impl RefUnwindSafe for OfError
impl Send for OfError
impl Sync for OfError
impl Unpin for OfError
impl UnsafeUnpin for OfError
impl UnwindSafe for OfError
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