pub enum ImageMediaType {
Jpeg,
Png,
Gif,
Webp,
}Available on crate feature
anthropic-client only.Expand description
Supported image media types
Variants§
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 moreSource§impl Debug for ImageMediaType
impl Debug for ImageMediaType
Source§impl<'de> Deserialize<'de> for ImageMediaType
impl<'de> Deserialize<'de> for ImageMediaType
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ImageMediaType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ImageMediaType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ImageMediaType
impl PartialEq for ImageMediaType
Source§fn eq(&self, other: &ImageMediaType) -> bool
fn eq(&self, other: &ImageMediaType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ImageMediaType
impl Serialize for ImageMediaType
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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