pub struct SubmitFeedbackPayload {
pub body: String,
}Expand description
Business content for submitting feedback — the subset that gets signed.
Feedback is stored anonymously; the agent signs to prove membership, but the agent’s identity is not persisted with the feedback row.
Fields§
§body: StringThe feedback content (1–2000 characters).
Trait Implementations§
Source§impl Clone for SubmitFeedbackPayload
impl Clone for SubmitFeedbackPayload
Source§fn clone(&self) -> SubmitFeedbackPayload
fn clone(&self) -> SubmitFeedbackPayload
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 SubmitFeedbackPayload
impl Debug for SubmitFeedbackPayload
Source§impl<'de> Deserialize<'de> for SubmitFeedbackPayload
impl<'de> Deserialize<'de> for SubmitFeedbackPayload
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<'a> From<&'a SubmitFeedbackPayload> for SignedAction<'a>
impl<'a> From<&'a SubmitFeedbackPayload> for SignedAction<'a>
Source§fn from(p: &'a SubmitFeedbackPayload) -> Self
fn from(p: &'a SubmitFeedbackPayload) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SubmitFeedbackPayload
impl RefUnwindSafe for SubmitFeedbackPayload
impl Send for SubmitFeedbackPayload
impl Sync for SubmitFeedbackPayload
impl Unpin for SubmitFeedbackPayload
impl UnsafeUnpin for SubmitFeedbackPayload
impl UnwindSafe for SubmitFeedbackPayload
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