pub struct FeedbackHistoryResponse {
pub memory_id: String,
pub entries: Vec<FeedbackHistoryEntry>,
}Expand description
Response from GET /v1/memories/:id/feedback (INT-1).
Fields§
§memory_id: String§entries: Vec<FeedbackHistoryEntry>Ordered list of feedback events (oldest first, capped at 100).
Trait Implementations§
Source§impl Clone for FeedbackHistoryResponse
impl Clone for FeedbackHistoryResponse
Source§fn clone(&self) -> FeedbackHistoryResponse
fn clone(&self) -> FeedbackHistoryResponse
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 FeedbackHistoryResponse
impl Debug for FeedbackHistoryResponse
Source§impl<'de> Deserialize<'de> for FeedbackHistoryResponse
impl<'de> Deserialize<'de> for FeedbackHistoryResponse
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 FeedbackHistoryResponse
impl RefUnwindSafe for FeedbackHistoryResponse
impl Send for FeedbackHistoryResponse
impl Sync for FeedbackHistoryResponse
impl Unpin for FeedbackHistoryResponse
impl UnsafeUnpin for FeedbackHistoryResponse
impl UnwindSafe for FeedbackHistoryResponse
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