pub struct FallbackChainEntryResponse {
pub created_at: String,
pub id: String,
pub is_enabled: bool,
pub max_tokens: Option<i64>,
pub model: String,
pub position: i64,
pub provider: String,
pub temperature: Option<f64>,
pub tier: Option<String>,
pub updated_at: String,
}Fields§
§created_at: String§id: String§is_enabled: bool§max_tokens: Option<i64>§model: String§position: i64§provider: String§temperature: Option<f64>§tier: Option<String>§updated_at: StringTrait Implementations§
Source§impl Clone for FallbackChainEntryResponse
impl Clone for FallbackChainEntryResponse
Source§fn clone(&self) -> FallbackChainEntryResponse
fn clone(&self) -> FallbackChainEntryResponse
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 FallbackChainEntryResponse
impl Debug for FallbackChainEntryResponse
Source§impl<'de> Deserialize<'de> for FallbackChainEntryResponse
impl<'de> Deserialize<'de> for FallbackChainEntryResponse
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
Auto Trait Implementations§
impl Freeze for FallbackChainEntryResponse
impl RefUnwindSafe for FallbackChainEntryResponse
impl Send for FallbackChainEntryResponse
impl Sync for FallbackChainEntryResponse
impl Unpin for FallbackChainEntryResponse
impl UnwindSafe for FallbackChainEntryResponse
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