pub struct ContentTraffic {
pub path: String,
pub title: String,
pub count: i32,
pub uniques: i32,
}
Expand description
ContentTraffic : Content Traffic
Fields§
§path: String
§title: String
§count: i32
§uniques: i32
Implementations§
Trait Implementations§
Source§impl Clone for ContentTraffic
impl Clone for ContentTraffic
Source§fn clone(&self) -> ContentTraffic
fn clone(&self) -> ContentTraffic
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 ContentTraffic
impl Debug for ContentTraffic
Source§impl Default for ContentTraffic
impl Default for ContentTraffic
Source§fn default() -> ContentTraffic
fn default() -> ContentTraffic
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ContentTraffic
impl<'de> Deserialize<'de> for ContentTraffic
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 ContentTraffic
impl PartialEq for ContentTraffic
Source§impl Serialize for ContentTraffic
impl Serialize for ContentTraffic
impl StructuralPartialEq for ContentTraffic
Auto Trait Implementations§
impl Freeze for ContentTraffic
impl RefUnwindSafe for ContentTraffic
impl Send for ContentTraffic
impl Sync for ContentTraffic
impl Unpin for ContentTraffic
impl UnwindSafe for ContentTraffic
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