[][src]Struct pi_hole_api::Summary

pub struct Summary {
    pub domains_being_blocked: String,
    pub dns_queries_today: String,
    pub ads_blocked_today: String,
    pub ads_percentage_today: String,
    pub unique_domains: String,
    pub queries_forwarded: String,
    pub queries_cached: String,
    pub clients_ever_seen: String,
    pub unique_clients: String,
    pub dns_queries_all_types: String,
    pub reply_nodata: String,
    pub reply_nxdomain: String,
    pub reply_cname: String,
    pub reply_ip: String,
    pub privacy_level: String,
    pub status: String,
}

Summary Struct

Fields

domains_being_blocked: String

Formatted number of domains being blocked

dns_queries_today: String

Formatted number of DNS queries today

ads_blocked_today: String

Formatted number of Ads blocked today

ads_percentage_today: String

Formatted percentage of queries blocked today

unique_domains: String

Formatted number of unique domains

queries_forwarded: String

Formatted number of queries forwarded

queries_cached: String

Formatted number of queries cached

clients_ever_seen: String

Formatted number of clients ever seen

unique_clients: String

Formatted number of unique clients

dns_queries_all_types: String

Formatted number of DNS queries of all types

reply_nodata: String

Formatted number of NODATA replies

reply_nxdomain: String

Formatted number of NXDOMAIN replies

reply_cname: String

Formatted number of CNAME replies

reply_ip: String

Formatted number of IP replies

privacy_level: String

Privacy level

status: String

Pi Hole status

Trait Implementations

impl Debug for Summary[src]

impl<'de> Deserialize<'de> for Summary[src]

Auto Trait Implementations

impl RefUnwindSafe for Summary

impl Send for Summary

impl Sync for Summary

impl Unpin for Summary

impl UnwindSafe for Summary

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.