pub struct GoogleCloudChannelV1Column {
pub column_id: Option<String>,
pub data_type: Option<String>,
pub display_name: Option<String>,
}Expand description
The definition of a report column. Specifies the data properties in the corresponding position of the report rows.
This type is not used in any activity, and only used as part of another schema.
Fields§
§column_id: Option<String>The unique name of the column (for example, customer_domain, channel_partner, customer_cost). You can use column IDs in RunReportJobRequest.filter. To see all reports and their columns, call CloudChannelReportsService.ListReports.
data_type: Option<String>The type of the values for this column.
display_name: Option<String>The column’s display name.
Trait Implementations§
Source§impl Clone for GoogleCloudChannelV1Column
impl Clone for GoogleCloudChannelV1Column
Source§fn clone(&self) -> GoogleCloudChannelV1Column
fn clone(&self) -> GoogleCloudChannelV1Column
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 GoogleCloudChannelV1Column
impl Debug for GoogleCloudChannelV1Column
Source§impl Default for GoogleCloudChannelV1Column
impl Default for GoogleCloudChannelV1Column
Source§fn default() -> GoogleCloudChannelV1Column
fn default() -> GoogleCloudChannelV1Column
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GoogleCloudChannelV1Column
impl<'de> Deserialize<'de> for GoogleCloudChannelV1Column
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 GoogleCloudChannelV1Column
Auto Trait Implementations§
impl Freeze for GoogleCloudChannelV1Column
impl RefUnwindSafe for GoogleCloudChannelV1Column
impl Send for GoogleCloudChannelV1Column
impl Sync for GoogleCloudChannelV1Column
impl Unpin for GoogleCloudChannelV1Column
impl UnwindSafe for GoogleCloudChannelV1Column
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