pub struct FeedbackSubmitResponse {
pub duplicate: bool,
pub session_id: Option<String>,
}Expand description
Response from crate::resources::Feedback::submit.
Fields§
§duplicate: booltrue when feedback for this session was already recorded.
session_id: Option<String>The session the feedback was attached to.
Trait Implementations§
Source§impl Clone for FeedbackSubmitResponse
impl Clone for FeedbackSubmitResponse
Source§fn clone(&self) -> FeedbackSubmitResponse
fn clone(&self) -> FeedbackSubmitResponse
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 FeedbackSubmitResponse
impl Debug for FeedbackSubmitResponse
Source§impl<'de> Deserialize<'de> for FeedbackSubmitResponse
impl<'de> Deserialize<'de> for FeedbackSubmitResponse
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 FeedbackSubmitResponse
impl RefUnwindSafe for FeedbackSubmitResponse
impl Send for FeedbackSubmitResponse
impl Sync for FeedbackSubmitResponse
impl Unpin for FeedbackSubmitResponse
impl UnsafeUnpin for FeedbackSubmitResponse
impl UnwindSafe for FeedbackSubmitResponse
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