pub struct CreateAbuseReportService {
pub file_uri: Option<String>,
pub category: i32,
pub description: String,
pub share_id: Option<String>,
pub user_id: Option<String>,
pub captcha: Option<HashMap<String, Value>>,
}Expand description
Create abuse report service
Fields§
§file_uri: Option<String>§category: i32§description: String§user_id: Option<String>§captcha: Option<HashMap<String, Value>>Trait Implementations§
Source§impl Clone for CreateAbuseReportService
impl Clone for CreateAbuseReportService
Source§fn clone(&self) -> CreateAbuseReportService
fn clone(&self) -> CreateAbuseReportService
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 CreateAbuseReportService
impl Debug for CreateAbuseReportService
Source§impl<'de> Deserialize<'de> for CreateAbuseReportService
impl<'de> Deserialize<'de> for CreateAbuseReportService
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 CreateAbuseReportService
impl RefUnwindSafe for CreateAbuseReportService
impl Send for CreateAbuseReportService
impl Sync for CreateAbuseReportService
impl Unpin for CreateAbuseReportService
impl UnsafeUnpin for CreateAbuseReportService
impl UnwindSafe for CreateAbuseReportService
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