pub struct StoreArtifactResponse {
pub ids: Vec<Uuid>,
pub chunks: usize,
pub token_count: i32,
}Expand description
Response after storing an artifact
Fields§
§ids: Vec<Uuid>IDs of created artifacts (multiple if chunked)
chunks: usizeNumber of chunks created
token_count: i32Total tokens in content
Trait Implementations§
Source§impl Clone for StoreArtifactResponse
impl Clone for StoreArtifactResponse
Source§fn clone(&self) -> StoreArtifactResponse
fn clone(&self) -> StoreArtifactResponse
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 StoreArtifactResponse
impl Debug for StoreArtifactResponse
Source§impl<'de> Deserialize<'de> for StoreArtifactResponse
impl<'de> Deserialize<'de> for StoreArtifactResponse
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 StoreArtifactResponse
impl RefUnwindSafe for StoreArtifactResponse
impl Send for StoreArtifactResponse
impl Sync for StoreArtifactResponse
impl Unpin for StoreArtifactResponse
impl UnsafeUnpin for StoreArtifactResponse
impl UnwindSafe for StoreArtifactResponse
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