pub enum ImageMediaType {
Png,
Jpeg,
WebP,
Gif,
}Expand description
Stored image media accepted for image analysis.
Variants§
Png
PNG image data.
Jpeg
JPEG image data.
WebP
WebP image data.
Gif
GIF image data. OpenAI accepts non-animated GIF input.
Implementations§
Trait Implementations§
Source§impl Clone for ImageMediaType
impl Clone for ImageMediaType
Source§fn clone(&self) -> ImageMediaType
fn clone(&self) -> ImageMediaType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ImageMediaType
Source§impl Debug for ImageMediaType
impl Debug for ImageMediaType
impl Eq for ImageMediaType
Source§impl Hash for ImageMediaType
impl Hash for ImageMediaType
Source§impl PartialEq for ImageMediaType
impl PartialEq for ImageMediaType
impl StructuralPartialEq for ImageMediaType
Auto Trait Implementations§
impl Freeze for ImageMediaType
impl RefUnwindSafe for ImageMediaType
impl Send for ImageMediaType
impl Sync for ImageMediaType
impl Unpin for ImageMediaType
impl UnsafeUnpin for ImageMediaType
impl UnwindSafe for ImageMediaType
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