pub struct FeedbackIssue {
pub category: FeedbackIssueCategory,
pub explanation: Option<String>,
}Expand description
One feedback issue.
Fields§
§category: FeedbackIssueCategory§explanation: Option<String>Trait Implementations§
Source§impl Clone for FeedbackIssue
impl Clone for FeedbackIssue
Source§fn clone(&self) -> FeedbackIssue
fn clone(&self) -> FeedbackIssue
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 FeedbackIssue
impl Debug for FeedbackIssue
Source§impl PartialEq for FeedbackIssue
impl PartialEq for FeedbackIssue
Source§fn eq(&self, other: &FeedbackIssue) -> bool
fn eq(&self, other: &FeedbackIssue) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for FeedbackIssue
impl StructuralPartialEq for FeedbackIssue
Auto Trait Implementations§
impl Freeze for FeedbackIssue
impl RefUnwindSafe for FeedbackIssue
impl Send for FeedbackIssue
impl Sync for FeedbackIssue
impl Unpin for FeedbackIssue
impl UnsafeUnpin for FeedbackIssue
impl UnwindSafe for FeedbackIssue
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