pub struct EmbeddingsOutput {
pub code: Option<String>,
pub message: Option<String>,
pub output: Output,
pub request_id: String,
pub status_code: Option<i32>,
pub usage: Option<Usage>,
}
Fields§
§code: Option<String>
§message: Option<String>
§output: Output
§request_id: String
§status_code: Option<i32>
§usage: Option<Usage>
Trait Implementations§
Source§impl Clone for EmbeddingsOutput
impl Clone for EmbeddingsOutput
Source§fn clone(&self) -> EmbeddingsOutput
fn clone(&self) -> EmbeddingsOutput
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 EmbeddingsOutput
impl Debug for EmbeddingsOutput
Source§impl<'de> Deserialize<'de> for EmbeddingsOutput
impl<'de> Deserialize<'de> for EmbeddingsOutput
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 EmbeddingsOutput
impl RefUnwindSafe for EmbeddingsOutput
impl Send for EmbeddingsOutput
impl Sync for EmbeddingsOutput
impl Unpin for EmbeddingsOutput
impl UnwindSafe for EmbeddingsOutput
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