pub struct ListFeedbackResponse {
pub reports: Vec<ErrorReport>,
pub count: i64,
pub new_count: i64,
}Expand description
ListFeedbackResponse model.
Fields§
§reports: Vec<ErrorReport>§count: i64§new_count: i64Trait Implementations§
Source§impl Clone for ListFeedbackResponse
impl Clone for ListFeedbackResponse
Source§fn clone(&self) -> ListFeedbackResponse
fn clone(&self) -> ListFeedbackResponse
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 ListFeedbackResponse
impl Debug for ListFeedbackResponse
Source§impl Default for ListFeedbackResponse
impl Default for ListFeedbackResponse
Source§fn default() -> ListFeedbackResponse
fn default() -> ListFeedbackResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListFeedbackResponse
impl<'de> Deserialize<'de> for ListFeedbackResponse
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 PartialEq for ListFeedbackResponse
impl PartialEq for ListFeedbackResponse
Source§impl Serialize for ListFeedbackResponse
impl Serialize for ListFeedbackResponse
impl StructuralPartialEq for ListFeedbackResponse
Auto Trait Implementations§
impl Freeze for ListFeedbackResponse
impl RefUnwindSafe for ListFeedbackResponse
impl Send for ListFeedbackResponse
impl Sync for ListFeedbackResponse
impl Unpin for ListFeedbackResponse
impl UnsafeUnpin for ListFeedbackResponse
impl UnwindSafe for ListFeedbackResponse
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