pub struct DocumentFailInfo {
pub embedding_code: Option<i64>,
pub embedding_msg: Option<String>,
}Expand description
Document vectorization failure info
Fields§
§embedding_code: Option<i64>Embedding failure code
embedding_msg: Option<String>Embedding failure message
Trait Implementations§
Source§impl Clone for DocumentFailInfo
impl Clone for DocumentFailInfo
Source§fn clone(&self) -> DocumentFailInfo
fn clone(&self) -> DocumentFailInfo
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 DocumentFailInfo
impl Debug for DocumentFailInfo
Source§impl<'de> Deserialize<'de> for DocumentFailInfo
impl<'de> Deserialize<'de> for DocumentFailInfo
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 Serialize for DocumentFailInfo
impl Serialize for DocumentFailInfo
Source§impl Validate for DocumentFailInfo
impl Validate for DocumentFailInfo
Source§impl<'v_a> ValidateArgs<'v_a> for DocumentFailInfo
impl<'v_a> ValidateArgs<'v_a> for DocumentFailInfo
Auto Trait Implementations§
impl Freeze for DocumentFailInfo
impl RefUnwindSafe for DocumentFailInfo
impl Send for DocumentFailInfo
impl Sync for DocumentFailInfo
impl Unpin for DocumentFailInfo
impl UnwindSafe for DocumentFailInfo
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