pub struct IpLayerNetworkBucket {
pub bucket_start_msec: Option<i64>,
pub bucket_duration_msec: Option<i64>,
pub stat_counters: Vec<StatCounters>,
pub network_active_duration: Option<i64>,
}Fields§
§bucket_start_msec: Option<i64>§bucket_duration_msec: Option<i64>§stat_counters: Vec<StatCounters>§network_active_duration: Option<i64>Implementations§
Source§impl IpLayerNetworkBucket
impl IpLayerNetworkBucket
Sourcepub fn bucket_start_msec(&self) -> i64
pub fn bucket_start_msec(&self) -> i64
Returns the value of bucket_start_msec, or the default value if bucket_start_msec is unset.
Sourcepub fn bucket_duration_msec(&self) -> i64
pub fn bucket_duration_msec(&self) -> i64
Returns the value of bucket_duration_msec, or the default value if bucket_duration_msec is unset.
Sourcepub fn network_active_duration(&self) -> i64
pub fn network_active_duration(&self) -> i64
Returns the value of network_active_duration, or the default value if network_active_duration is unset.
Trait Implementations§
Source§impl Clone for IpLayerNetworkBucket
impl Clone for IpLayerNetworkBucket
Source§fn clone(&self) -> IpLayerNetworkBucket
fn clone(&self) -> IpLayerNetworkBucket
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 IpLayerNetworkBucket
impl Debug for IpLayerNetworkBucket
Source§impl Default for IpLayerNetworkBucket
impl Default for IpLayerNetworkBucket
Source§impl Message for IpLayerNetworkBucket
impl Message for IpLayerNetworkBucket
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message to a buffer. Read more
Source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message to a newly allocated buffer.
Source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message with a length-delimiter to a buffer. Read more
Source§fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message with a length-delimiter to a newly allocated buffer.
Source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes an instance of the message from a buffer. Read more
Source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes a length-delimited instance of the message from the buffer.
Source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes an instance of the message from a buffer, and merges it into
self. Read moreSource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes a length-delimited instance of the message from buffer, and
merges it into
self.Source§impl PartialEq for IpLayerNetworkBucket
impl PartialEq for IpLayerNetworkBucket
impl StructuralPartialEq for IpLayerNetworkBucket
Auto Trait Implementations§
impl Freeze for IpLayerNetworkBucket
impl RefUnwindSafe for IpLayerNetworkBucket
impl Send for IpLayerNetworkBucket
impl Sync for IpLayerNetworkBucket
impl Unpin for IpLayerNetworkBucket
impl UnwindSafe for IpLayerNetworkBucket
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