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 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 AttributesCountDatapoint
impl Debug for AttributesCountDatapoint
Source§impl Default for AttributesCountDatapoint
impl Default for AttributesCountDatapoint
Source§fn default() -> AttributesCountDatapoint
fn default() -> AttributesCountDatapoint
Returns the “default value” for a type. Read more
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§impl Serialize for AttributesCountDatapoint
impl Serialize for AttributesCountDatapoint
impl StructuralPartialEq for AttributesCountDatapoint
Auto Trait Implementations§
impl Freeze for AttributesCountDatapoint
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