pub struct PineconeErrorResponse {
pub code: usize,
pub message: String,
pub details: Vec<MappedValue>,
}
Expand description
Details the generic pinecone error response sent during index operations.
Fields§
§code: usize
Error code.
message: String
Error message.
details: Vec<MappedValue>
Details for the error
Actual value of this is unkown at this time and if anyone knows please create an Issue so I can properly implement this type!
Trait Implementations§
Source§impl Clone for PineconeErrorResponse
impl Clone for PineconeErrorResponse
Source§fn clone(&self) -> PineconeErrorResponse
fn clone(&self) -> PineconeErrorResponse
Returns a copy 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 PineconeErrorResponse
impl Debug for PineconeErrorResponse
Source§impl Default for PineconeErrorResponse
impl Default for PineconeErrorResponse
Source§fn default() -> PineconeErrorResponse
fn default() -> PineconeErrorResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PineconeErrorResponse
impl<'de> Deserialize<'de> for PineconeErrorResponse
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 PineconeErrorResponse
impl RefUnwindSafe for PineconeErrorResponse
impl Send for PineconeErrorResponse
impl Sync for PineconeErrorResponse
impl Unpin for PineconeErrorResponse
impl UnwindSafe for PineconeErrorResponse
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