pub struct RecipientLoad {
pub median_per_week: f32,
pub p90_per_week: f32,
pub users_reached: i32,
pub window_days: i32,
pub median_distinct_senders: f32,
pub p90_distinct_senders: f32,
pub median_distinct_channels: f32,
pub p90_distinct_channels: f32,
}Expand description
How much messaging lands on a single person over the observed window.
Fields§
§median_per_week: f32§p90_per_week: f32§users_reached: i32§window_days: i32§median_distinct_senders: f32Median number of distinct senders reaching one recipient within the same window.
p90_distinct_senders: f3290th-percentile number of distinct senders reaching one recipient within the same window.
median_distinct_channels: f32Median number of distinct channels one recipient is reached on within the same window.
p90_distinct_channels: f3290th-percentile number of distinct channels one recipient is reached on within the same window.
Trait Implementations§
Source§impl Clone for RecipientLoad
impl Clone for RecipientLoad
Source§fn clone(&self) -> RecipientLoad
fn clone(&self) -> RecipientLoad
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RecipientLoad
Source§impl Debug for RecipientLoad
impl Debug for RecipientLoad
Source§impl Default for RecipientLoad
impl Default for RecipientLoad
Source§impl Message for RecipientLoad
impl Message for RecipientLoad
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 RecipientLoad
impl PartialEq for RecipientLoad
impl StructuralPartialEq for RecipientLoad
Auto Trait Implementations§
impl Freeze for RecipientLoad
impl RefUnwindSafe for RecipientLoad
impl Send for RecipientLoad
impl Sync for RecipientLoad
impl Unpin for RecipientLoad
impl UnsafeUnpin for RecipientLoad
impl UnwindSafe for RecipientLoad
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request