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