pub struct AttributesCountDatapoint {
pub count: i64,
pub name: String,
}Fields§
§count: i64Count of the attribute value for given key
name: StringName of the attribute value for given key
Implementations§
source§impl AttributesCountDatapoint
impl AttributesCountDatapoint
pub fn new(count: i64, name: String) -> AttributesCountDatapoint
Trait Implementations§
source§impl Clone for AttributesCountDatapoint
impl Clone for AttributesCountDatapoint
source§fn clone(&self) -> AttributesCountDatapoint
fn clone(&self) -> AttributesCountDatapoint
Returns a copy 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 AttributesCountDatapoint
impl Debug for AttributesCountDatapoint
source§impl<'de> Deserialize<'de> for AttributesCountDatapoint
impl<'de> Deserialize<'de> for AttributesCountDatapoint
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for AttributesCountDatapoint
impl PartialEq for AttributesCountDatapoint
source§fn eq(&self, other: &AttributesCountDatapoint) -> bool
fn eq(&self, other: &AttributesCountDatapoint) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for AttributesCountDatapoint
impl Serialize for AttributesCountDatapoint
impl StructuralPartialEq for AttributesCountDatapoint
Auto Trait Implementations§
impl RefUnwindSafe for AttributesCountDatapoint
impl Send for AttributesCountDatapoint
impl Sync for AttributesCountDatapoint
impl Unpin for AttributesCountDatapoint
impl UnwindSafe for AttributesCountDatapoint
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