pub struct ImageOutputConfig {
pub supported: bool,
pub formats: Vec<String>,
}Expand description
Image generation output configuration.
Fields§
§supported: bool§formats: Vec<String>Trait Implementations§
Source§impl Clone for ImageOutputConfig
impl Clone for ImageOutputConfig
Source§fn clone(&self) -> ImageOutputConfig
fn clone(&self) -> ImageOutputConfig
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 ImageOutputConfig
impl Debug for ImageOutputConfig
Source§impl Default for ImageOutputConfig
impl Default for ImageOutputConfig
Source§fn default() -> ImageOutputConfig
fn default() -> ImageOutputConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ImageOutputConfig
impl<'de> Deserialize<'de> for ImageOutputConfig
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
Auto Trait Implementations§
impl Freeze for ImageOutputConfig
impl RefUnwindSafe for ImageOutputConfig
impl Send for ImageOutputConfig
impl Sync for ImageOutputConfig
impl Unpin for ImageOutputConfig
impl UnsafeUnpin for ImageOutputConfig
impl UnwindSafe for ImageOutputConfig
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