pub struct ImageProperties {
pub dominant_colors: Option<DominantColorsAnnotation>,
}Expand description
Stores image properties, such as dominant colors.
This type is not used in any activity, and only used as part of another schema.
Fields§
§dominant_colors: Option<DominantColorsAnnotation>If present, dominant colors completed successfully.
Trait Implementations§
Source§impl Clone for ImageProperties
impl Clone for ImageProperties
Source§fn clone(&self) -> ImageProperties
fn clone(&self) -> ImageProperties
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 ImageProperties
impl Debug for ImageProperties
Source§impl Default for ImageProperties
impl Default for ImageProperties
Source§fn default() -> ImageProperties
fn default() -> ImageProperties
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ImageProperties
impl<'de> Deserialize<'de> for ImageProperties
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 ImageProperties
impl Serialize for ImageProperties
impl Part for ImageProperties
Auto Trait Implementations§
impl Freeze for ImageProperties
impl RefUnwindSafe for ImageProperties
impl Send for ImageProperties
impl Sync for ImageProperties
impl Unpin for ImageProperties
impl UnwindSafe for ImageProperties
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