pub struct AdStyle {
pub colors: Option<AdStyleColors>,
pub corners: Option<String>,
pub font: Option<AdStyleFont>,
pub kind: Option<String>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§colors: Option<AdStyleColors>The colors included in the style. These are represented as six hexadecimal characters, similar to HTML color codes, but without the leading hash.
corners: Option<String>The style of the corners in the ad (deprecated: never populated, ignored).
font: Option<AdStyleFont>The font which is included in the style.
kind: Option<String>Kind this is, in this case adsensehost#adStyle.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AdStyle
impl<'de> Deserialize<'de> for AdStyle
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 AdStyle
Auto Trait Implementations§
impl Freeze for AdStyle
impl RefUnwindSafe for AdStyle
impl Send for AdStyle
impl Sync for AdStyle
impl Unpin for AdStyle
impl UnwindSafe for AdStyle
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