pub struct EnrichmentStatusResponse {
pub source_id: String,
pub summary: String,
pub steps: Vec<EnrichmentStepStatus>,
}Expand description
Response for GET /api/memory/{id}/enrichment-status.
Fields§
§source_id: String§summary: String§steps: Vec<EnrichmentStepStatus>Trait Implementations§
Source§impl Clone for EnrichmentStatusResponse
impl Clone for EnrichmentStatusResponse
Source§fn clone(&self) -> EnrichmentStatusResponse
fn clone(&self) -> EnrichmentStatusResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EnrichmentStatusResponse
impl Debug for EnrichmentStatusResponse
Source§impl<'de> Deserialize<'de> for EnrichmentStatusResponse
impl<'de> Deserialize<'de> for EnrichmentStatusResponse
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 EnrichmentStatusResponse
impl RefUnwindSafe for EnrichmentStatusResponse
impl Send for EnrichmentStatusResponse
impl Sync for EnrichmentStatusResponse
impl Unpin for EnrichmentStatusResponse
impl UnsafeUnpin for EnrichmentStatusResponse
impl UnwindSafe for EnrichmentStatusResponse
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