pub struct DeepSeekFimResponse {
pub id: Option<String>,
pub object: Option<String>,
pub created: Option<u64>,
pub model: Option<String>,
pub choices: Vec<DeepSeekFimChoice>,
pub usage: Option<TokenUsage>,
}Fields§
§id: Option<String>§object: Option<String>§created: Option<u64>§model: Option<String>§choices: Vec<DeepSeekFimChoice>§usage: Option<TokenUsage>Trait Implementations§
Source§impl Clone for DeepSeekFimResponse
impl Clone for DeepSeekFimResponse
Source§fn clone(&self) -> DeepSeekFimResponse
fn clone(&self) -> DeepSeekFimResponse
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 DeepSeekFimResponse
impl Debug for DeepSeekFimResponse
Source§impl<'de> Deserialize<'de> for DeepSeekFimResponse
impl<'de> Deserialize<'de> for DeepSeekFimResponse
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 DeepSeekFimResponse
impl PartialEq for DeepSeekFimResponse
Source§impl Serialize for DeepSeekFimResponse
impl Serialize for DeepSeekFimResponse
impl StructuralPartialEq for DeepSeekFimResponse
Auto Trait Implementations§
impl Freeze for DeepSeekFimResponse
impl RefUnwindSafe for DeepSeekFimResponse
impl Send for DeepSeekFimResponse
impl Sync for DeepSeekFimResponse
impl Unpin for DeepSeekFimResponse
impl UnsafeUnpin for DeepSeekFimResponse
impl UnwindSafe for DeepSeekFimResponse
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