pub struct AdWordsManagerAccountInfo {
pub id: Option<i64>,
pub customer_name: Option<String>,
}Expand description
Information about a particular AdWords Manager Account. Read more at https://support.google.com/adwords/answer/6139186
This type is not used in any activity, and only used as part of another schema.
Fields§
§id: Option<i64>The AdWords Manager Account id.
customer_name: Option<String>Name of the customer this account represents.
Trait Implementations§
Source§impl Clone for AdWordsManagerAccountInfo
impl Clone for AdWordsManagerAccountInfo
Source§fn clone(&self) -> AdWordsManagerAccountInfo
fn clone(&self) -> AdWordsManagerAccountInfo
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 AdWordsManagerAccountInfo
impl Debug for AdWordsManagerAccountInfo
Source§impl Default for AdWordsManagerAccountInfo
impl Default for AdWordsManagerAccountInfo
Source§fn default() -> AdWordsManagerAccountInfo
fn default() -> AdWordsManagerAccountInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AdWordsManagerAccountInfo
impl<'de> Deserialize<'de> for AdWordsManagerAccountInfo
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 AdWordsManagerAccountInfo
Auto Trait Implementations§
impl Freeze for AdWordsManagerAccountInfo
impl RefUnwindSafe for AdWordsManagerAccountInfo
impl Send for AdWordsManagerAccountInfo
impl Sync for AdWordsManagerAccountInfo
impl Unpin for AdWordsManagerAccountInfo
impl UnwindSafe for AdWordsManagerAccountInfo
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