pub struct AppOperations {
pub application: String,
pub success: u32,
pub other: u32,
pub timeout: u32,
pub internal_error: u32,
pub bad_request: u32,
pub forbidden: u32,
pub too_large: u32,
pub not_implemented: u32,
pub not_found: u32,
pub unavailable: u32,
pub unauthorized: u32,
}Expand description
App Operations - Format (0,2202)
Count of operations by status code
§XDR Definition (sFlow Application)
/* Application counters */
/* opaque = counter_data; enterprise = 0; format = 2202 */
struct app_operations {
application application;
unsigned int success;
unsigned int other;
unsigned int timeout;
unsigned int internal_error;
unsigned int bad_request;
unsigned int forbidden;
unsigned int too_large;
unsigned int not_implemented;
unsigned int not_found;
unsigned int unavailable;
unsigned int unauthorized;
}Fields§
§application: StringApplication identifier
success: u32Successful operations
other: u32Other status
timeout: u32Timeout
internal_error: u32Internal error
bad_request: u32Bad request
forbidden: u32Forbidden
too_large: u32Too large
not_implemented: u32Not implemented
not_found: u32Not found
Unavailable
Unauthorized
Trait Implementations§
Source§impl Clone for AppOperations
impl Clone for AppOperations
Source§fn clone(&self) -> AppOperations
fn clone(&self) -> AppOperations
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 AppOperations
impl Debug for AppOperations
Source§impl PartialEq for AppOperations
impl PartialEq for AppOperations
impl Eq for AppOperations
impl StructuralPartialEq for AppOperations
Auto Trait Implementations§
impl Freeze for AppOperations
impl RefUnwindSafe for AppOperations
impl Send for AppOperations
impl Sync for AppOperations
impl Unpin for AppOperations
impl UnwindSafe for AppOperations
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