pub enum WireFormat {
ChatCompletions,
Responses,
AnthropicMessages,
}Expand description
Wire protocol spoken by a provider.
Variants§
ChatCompletions
OpenAI-compatible /v1/chat/completions style payloads.
Responses
OpenAI Responses API (/responses).
AnthropicMessages
Native Anthropic Messages API (/v1/messages).
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 (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 WireFormat
Source§impl Debug for WireFormat
impl Debug for WireFormat
impl Eq for WireFormat
Source§impl PartialEq for WireFormat
impl PartialEq for WireFormat
Source§fn eq(&self, other: &WireFormat) -> bool
fn eq(&self, other: &WireFormat) -> bool
Tests for
self and other values to be equal, and is used by ==.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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.