pub struct VideoAbuseReportReasonSnippet {
pub label: Option<String>,
pub secondary_reasons: Option<Vec<VideoAbuseReportSecondaryReason>>,
}
Expand description
Basic details about a video category, such as its localized title.
This type is not used in any activity, and only used as part of another schema.
Fields§
§label: Option<String>
The localized label belonging to this abuse report reason.
secondary_reasons: Option<Vec<VideoAbuseReportSecondaryReason>>
The secondary reasons associated with this reason, if any are available. (There might be 0 or more.)
Trait Implementations§
source§impl Clone for VideoAbuseReportReasonSnippet
impl Clone for VideoAbuseReportReasonSnippet
source§fn clone(&self) -> VideoAbuseReportReasonSnippet
fn clone(&self) -> VideoAbuseReportReasonSnippet
Returns a copy of the value. Read more
1.0.0 · 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 VideoAbuseReportReasonSnippet
impl Default for VideoAbuseReportReasonSnippet
source§fn default() -> VideoAbuseReportReasonSnippet
fn default() -> VideoAbuseReportReasonSnippet
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for VideoAbuseReportReasonSnippet
impl<'de> Deserialize<'de> for VideoAbuseReportReasonSnippet
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 Part for VideoAbuseReportReasonSnippet
Auto Trait Implementations§
impl RefUnwindSafe for VideoAbuseReportReasonSnippet
impl Send for VideoAbuseReportReasonSnippet
impl Sync for VideoAbuseReportReasonSnippet
impl Unpin for VideoAbuseReportReasonSnippet
impl UnwindSafe for VideoAbuseReportReasonSnippet
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