pub enum InputImageContentDetail {
Low,
High,
Auto,
}
Expand description
The detail level of the image to be sent to the model. One of high
, low
, or auto
. Defaults to auto
.
Variants§
Trait Implementations§
Source§impl Clone for InputImageContentDetail
impl Clone for InputImageContentDetail
Source§fn clone(&self) -> InputImageContentDetail
fn clone(&self) -> InputImageContentDetail
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 InputImageContentDetail
impl Debug for InputImageContentDetail
Source§impl<'de> Deserialize<'de> for InputImageContentDetail
impl<'de> Deserialize<'de> for InputImageContentDetail
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 PartialEq for InputImageContentDetail
impl PartialEq for InputImageContentDetail
Source§impl Serialize for InputImageContentDetail
impl Serialize for InputImageContentDetail
impl Copy for InputImageContentDetail
impl StructuralPartialEq for InputImageContentDetail
Auto Trait Implementations§
impl Freeze for InputImageContentDetail
impl RefUnwindSafe for InputImageContentDetail
impl Send for InputImageContentDetail
impl Sync for InputImageContentDetail
impl Unpin for InputImageContentDetail
impl UnwindSafe for InputImageContentDetail
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