Struct google_youtube3::api::VideoAbuseReport
source · pub struct VideoAbuseReport {
pub comments: Option<String>,
pub language: Option<String>,
pub reason_id: Option<String>,
pub secondary_reason_id: Option<String>,
pub video_id: Option<String>,
}
Expand description
There is no detailed description.
Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- report abuse videos (request)
Fields§
§comments: Option<String>
Additional comments regarding the abuse report.
language: Option<String>
The language that the content was viewed in.
reason_id: Option<String>
The high-level, or primary, reason that the content is abusive. The value is an abuse report reason ID.
secondary_reason_id: Option<String>
The specific, or secondary, reason that this content is abusive (if available). The value is an abuse report reason ID that is a valid secondary reason for the primary reason.
video_id: Option<String>
The ID that YouTube uses to uniquely identify the video.
Trait Implementations§
source§impl Clone for VideoAbuseReport
impl Clone for VideoAbuseReport
source§fn clone(&self) -> VideoAbuseReport
fn clone(&self) -> VideoAbuseReport
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 Debug for VideoAbuseReport
impl Debug for VideoAbuseReport
source§impl Default for VideoAbuseReport
impl Default for VideoAbuseReport
source§fn default() -> VideoAbuseReport
fn default() -> VideoAbuseReport
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for VideoAbuseReport
impl<'de> Deserialize<'de> for VideoAbuseReport
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 Serialize for VideoAbuseReport
impl Serialize for VideoAbuseReport
impl RequestValue for VideoAbuseReport
Auto Trait Implementations§
impl RefUnwindSafe for VideoAbuseReport
impl Send for VideoAbuseReport
impl Sync for VideoAbuseReport
impl Unpin for VideoAbuseReport
impl UnwindSafe for VideoAbuseReport
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