pub enum WireFormat {
OpenAiChat,
AnthropicMessages,
OpenAiResponses,
}Expand description
Built-in provider API formats.
Variants§
OpenAiChat
OpenAI Chat Completions API.
AnthropicMessages
Anthropic Messages API.
OpenAiResponses
OpenAI Responses API.
Implementations§
Trait Implementations§
Source§impl Clone for WireFormat
impl Clone for WireFormat
Source§fn clone(&self) -> WireFormat
fn clone(&self) -> WireFormat
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 WireFormat
impl Debug for WireFormat
Source§impl<'de> Deserialize<'de> for WireFormat
impl<'de> Deserialize<'de> for WireFormat
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 Display for WireFormat
impl Display for WireFormat
Source§impl From<&WireFormat> for FormatId
impl From<&WireFormat> for FormatId
Source§fn from(format: &WireFormat) -> Self
fn from(format: &WireFormat) -> Self
Converts to this type from the input type.
Source§impl From<WireFormat> for FormatId
impl From<WireFormat> for FormatId
Source§fn from(format: WireFormat) -> Self
fn from(format: WireFormat) -> Self
Converts to this type from the input type.
Source§impl Hash for WireFormat
impl Hash for WireFormat
Source§impl Ord for WireFormat
impl Ord for WireFormat
Source§fn cmp(&self, other: &WireFormat) -> Ordering
fn cmp(&self, other: &WireFormat) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for WireFormat
impl PartialEq for WireFormat
Source§impl PartialOrd for WireFormat
impl PartialOrd for WireFormat
Source§impl Serialize for WireFormat
impl Serialize for WireFormat
impl Copy for WireFormat
impl Eq for WireFormat
impl StructuralPartialEq for WireFormat
Auto Trait Implementations§
impl Freeze for WireFormat
impl RefUnwindSafe for WireFormat
impl Send for WireFormat
impl Sync for WireFormat
impl Unpin for WireFormat
impl UnsafeUnpin for WireFormat
impl UnwindSafe for WireFormat
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