#[non_exhaustive]pub enum BatchCreateParamsEndpoint {
V1Responses,
V1ChatCompletions,
V1Embeddings,
V1Completions,
V1Moderations,
V1ImagesGenerations,
V1ImagesEdits,
V1Videos,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
V1Responses
V1ChatCompletions
V1Embeddings
V1Completions
V1Moderations
V1ImagesGenerations
V1ImagesEdits
V1Videos
Trait Implementations§
Source§impl Clone for BatchCreateParamsEndpoint
impl Clone for BatchCreateParamsEndpoint
Source§fn clone(&self) -> BatchCreateParamsEndpoint
fn clone(&self) -> BatchCreateParamsEndpoint
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 BatchCreateParamsEndpoint
impl Debug for BatchCreateParamsEndpoint
Source§impl<'de> Deserialize<'de> for BatchCreateParamsEndpoint
impl<'de> Deserialize<'de> for BatchCreateParamsEndpoint
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
impl Eq for BatchCreateParamsEndpoint
impl StructuralPartialEq for BatchCreateParamsEndpoint
Auto Trait Implementations§
impl Freeze for BatchCreateParamsEndpoint
impl RefUnwindSafe for BatchCreateParamsEndpoint
impl Send for BatchCreateParamsEndpoint
impl Sync for BatchCreateParamsEndpoint
impl Unpin for BatchCreateParamsEndpoint
impl UnsafeUnpin for BatchCreateParamsEndpoint
impl UnwindSafe for BatchCreateParamsEndpoint
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