pub struct UserFeedback {Show 14 fields
pub id: Option<String>,
pub user_id: Option<String>,
pub request_id: Option<String>,
pub institution_id: Option<String>,
pub text: Option<String>,
pub category: Option<String>,
pub user_name: Option<String>,
pub user_email: Option<String>,
pub org_name: Option<String>,
pub media_type: Option<String>,
pub media_view_url: Option<String>,
pub media_source: Option<String>,
pub label: Option<String>,
pub created_at: Option<String>,
}Expand description
Response body from POST /api/v2/user-feedback (201 Created)
Fields§
§id: Option<String>§user_id: Option<String>§request_id: Option<String>§institution_id: Option<String>§text: Option<String>§category: Option<String>§user_name: Option<String>§user_email: Option<String>§org_name: Option<String>§media_type: Option<String>§media_view_url: Option<String>§media_source: Option<String>§label: Option<String>§created_at: Option<String>Trait Implementations§
Source§impl Clone for UserFeedback
impl Clone for UserFeedback
Source§fn clone(&self) -> UserFeedback
fn clone(&self) -> UserFeedback
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 UserFeedback
impl Debug for UserFeedback
Source§impl<'de> Deserialize<'de> for UserFeedback
impl<'de> Deserialize<'de> for UserFeedback
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 UserFeedback
impl RefUnwindSafe for UserFeedback
impl Send for UserFeedback
impl Sync for UserFeedback
impl Unpin for UserFeedback
impl UnsafeUnpin for UserFeedback
impl UnwindSafe for UserFeedback
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