pub struct DomainUsage {
pub domain: String,
pub domain_unique_id: String,
pub credits_used: f64,
}
Fields§
§domain: String
This field gives the title of a domain that was used by this query.
domain_unique_id: String
This field gives the unique ID of a domain that was used by this query.
credits_used: f64
This field species how many credits the use of this domain cost.
Trait Implementations§
Source§impl Debug for DomainUsage
impl Debug for DomainUsage
Source§impl<'de> Deserialize<'de> for DomainUsage
impl<'de> Deserialize<'de> for DomainUsage
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
Auto Trait Implementations§
impl Freeze for DomainUsage
impl RefUnwindSafe for DomainUsage
impl Send for DomainUsage
impl Sync for DomainUsage
impl Unpin for DomainUsage
impl UnwindSafe for DomainUsage
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