pub struct Header {
pub currency_code: Option<String>,
pub name: Option<String>,
pub type_: Option<String>,
}Expand description
The header information of the columns requested in the report.
This type is not used in any activity, and only used as part of another schema.
Fields§
§currency_code: Option<String>The ISO-4217 currency code of this column. Only present if the header type is METRIC_CURRENCY.
name: Option<String>Required. Name of the header.
type_: Option<String>Required. Type of the header.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Header
impl<'de> Deserialize<'de> for Header
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
impl Part for Header
Auto Trait Implementations§
impl Freeze for Header
impl RefUnwindSafe for Header
impl Send for Header
impl Sync for Header
impl Unpin for Header
impl UnwindSafe for Header
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