pub struct AppBucket {
pub bucket_start_msec: Option<i64>,
pub bucket_duration_msec: Option<i64>,
pub stat_counters: Vec<StatCounters>,
pub operation_count: Option<i64>,
}Fields§
§bucket_start_msec: Option<i64>§bucket_duration_msec: Option<i64>§stat_counters: Vec<StatCounters>§operation_count: Option<i64>Implementations§
Source§impl AppBucket
impl AppBucket
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 operation_count(&self) -> i64
pub fn operation_count(&self) -> i64
Returns the value of operation_count, or the default value if operation_count is unset.
Trait Implementations§
Source§impl Message for AppBucket
impl Message for AppBucket
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.impl StructuralPartialEq for AppBucket
Auto Trait Implementations§
impl Freeze for AppBucket
impl RefUnwindSafe for AppBucket
impl Send for AppBucket
impl Sync for AppBucket
impl Unpin for AppBucket
impl UnwindSafe for AppBucket
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