pub struct AboutTeamDriveThemes {
pub color_rgb: Option<String>,
pub background_image_link: Option<String>,
pub id: Option<String>,
}Expand description
A list of themes that are supported for Team Drives.
This type is not used in any activity, and only used as part of another schema.
Fields§
§color_rgb: Option<String>The color of this Team Drive theme as an RGB hex string.
background_image_link: Option<String>A link to this Team Drive theme’s background image.
id: Option<String>The ID of the theme.
Trait Implementations§
Source§impl Clone for AboutTeamDriveThemes
impl Clone for AboutTeamDriveThemes
Source§fn clone(&self) -> AboutTeamDriveThemes
fn clone(&self) -> AboutTeamDriveThemes
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 AboutTeamDriveThemes
impl Debug for AboutTeamDriveThemes
Source§impl Default for AboutTeamDriveThemes
impl Default for AboutTeamDriveThemes
Source§fn default() -> AboutTeamDriveThemes
fn default() -> AboutTeamDriveThemes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AboutTeamDriveThemes
impl<'de> Deserialize<'de> for AboutTeamDriveThemes
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 Serialize for AboutTeamDriveThemes
impl Serialize for AboutTeamDriveThemes
impl NestedType for AboutTeamDriveThemes
impl Part for AboutTeamDriveThemes
Auto Trait Implementations§
impl Freeze for AboutTeamDriveThemes
impl RefUnwindSafe for AboutTeamDriveThemes
impl Send for AboutTeamDriveThemes
impl Sync for AboutTeamDriveThemes
impl Unpin for AboutTeamDriveThemes
impl UnwindSafe for AboutTeamDriveThemes
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more