pub struct BillableInfoResponse {
pub ok: bool,
pub error: Option<String>,
pub response_metadata: Option<ResponseMetadata>,
pub billable_info: Option<HashMap<String, BillableInfo>>,
}Fields§
§ok: bool§error: Option<String>§response_metadata: Option<ResponseMetadata>§billable_info: Option<HashMap<String, BillableInfo>>Trait Implementations§
Source§impl Debug for BillableInfoResponse
impl Debug for BillableInfoResponse
Source§impl Default for BillableInfoResponse
impl Default for BillableInfoResponse
Source§fn default() -> BillableInfoResponse
fn default() -> BillableInfoResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BillableInfoResponse
impl<'de> Deserialize<'de> for BillableInfoResponse
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 BillableInfoResponse
impl PartialEq for BillableInfoResponse
Source§impl Serialize for BillableInfoResponse
impl Serialize for BillableInfoResponse
impl StructuralPartialEq for BillableInfoResponse
Auto Trait Implementations§
impl Freeze for BillableInfoResponse
impl RefUnwindSafe for BillableInfoResponse
impl Send for BillableInfoResponse
impl Sync for BillableInfoResponse
impl Unpin for BillableInfoResponse
impl UnwindSafe for BillableInfoResponse
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