pub struct DestinationExtended {
pub destination: Destination,
pub active_connections: u32,
pub inactive_connections: u32,
pub persistent_connections: u32,
pub stats64: Stats64,
}
Fields§
§destination: Destination
§active_connections: u32
§inactive_connections: u32
§persistent_connections: u32
§stats64: Stats64
Implementations§
Source§impl DestinationExtended
impl DestinationExtended
pub fn from_nlas( nlas: &[DestinationCtrlAttrs], ) -> Result<DestinationExtended, Box<dyn Error>>
Trait Implementations§
Source§impl Clone for DestinationExtended
impl Clone for DestinationExtended
Source§fn clone(&self) -> DestinationExtended
fn clone(&self) -> DestinationExtended
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 DestinationExtended
impl Debug for DestinationExtended
Source§impl PartialEq for DestinationExtended
impl PartialEq for DestinationExtended
impl Eq for DestinationExtended
impl StructuralPartialEq for DestinationExtended
Auto Trait Implementations§
impl Freeze for DestinationExtended
impl RefUnwindSafe for DestinationExtended
impl Send for DestinationExtended
impl Sync for DestinationExtended
impl Unpin for DestinationExtended
impl UnwindSafe for DestinationExtended
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