pub struct ListAllContentReportsResponse {
pub items: Vec<ContentReport>,
pub cursor: Option<String>,
pub has_more: bool,
}Expand description
ListAllContentReportsResponse model.
Fields§
§items: Vec<ContentReport>§cursor: Option<String>§has_more: boolTrait Implementations§
Source§impl Clone for ListAllContentReportsResponse
impl Clone for ListAllContentReportsResponse
Source§fn clone(&self) -> ListAllContentReportsResponse
fn clone(&self) -> ListAllContentReportsResponse
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 Default for ListAllContentReportsResponse
impl Default for ListAllContentReportsResponse
Source§fn default() -> ListAllContentReportsResponse
fn default() -> ListAllContentReportsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListAllContentReportsResponse
impl<'de> Deserialize<'de> for ListAllContentReportsResponse
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
impl StructuralPartialEq for ListAllContentReportsResponse
Auto Trait Implementations§
impl Freeze for ListAllContentReportsResponse
impl RefUnwindSafe for ListAllContentReportsResponse
impl Send for ListAllContentReportsResponse
impl Sync for ListAllContentReportsResponse
impl Unpin for ListAllContentReportsResponse
impl UnsafeUnpin for ListAllContentReportsResponse
impl UnwindSafe for ListAllContentReportsResponse
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