#[repr(u32)]pub enum AppStatus {
Success = 0,
Other = 1,
Timeout = 2,
InternalError = 3,
BadRequest = 4,
Forbidden = 5,
TooLarge = 6,
NotImplemented = 7,
NotFound = 8,
Unavailable = 9,
Unauthorized = 10,
}Expand description
Application operation status
§XDR Definition (sFlow Application)
Variants§
Success = 0
Other = 1
Timeout = 2
InternalError = 3
BadRequest = 4
Forbidden = 5
TooLarge = 6
NotImplemented = 7
NotFound = 8
Trait Implementations§
impl Copy for AppStatus
impl Eq for AppStatus
impl StructuralPartialEq for AppStatus
Auto Trait Implementations§
impl Freeze for AppStatus
impl RefUnwindSafe for AppStatus
impl Send for AppStatus
impl Sync for AppStatus
impl Unpin for AppStatus
impl UnwindSafe for AppStatus
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