pub struct FeedbackSummary {
pub count: u64,
pub summary_value: i128,
pub summary_value_decimals: u8,
}Expand description
Summary for feedback aggregation.
Fields§
§count: u64§summary_value: i128§summary_value_decimals: u8Trait Implementations§
Source§impl Clone for FeedbackSummary
impl Clone for FeedbackSummary
Source§fn clone(&self) -> FeedbackSummary
fn clone(&self) -> FeedbackSummary
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 moreSource§impl Debug for FeedbackSummary
impl Debug for FeedbackSummary
Source§impl<'de> Deserialize<'de> for FeedbackSummary
impl<'de> Deserialize<'de> for FeedbackSummary
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<FeedbackSummary, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<FeedbackSummary, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for FeedbackSummary
impl Serialize for FeedbackSummary
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for FeedbackSummary
impl RefUnwindSafe for FeedbackSummary
impl Send for FeedbackSummary
impl Sync for FeedbackSummary
impl Unpin for FeedbackSummary
impl UnsafeUnpin for FeedbackSummary
impl UnwindSafe for FeedbackSummary
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