Struct google_youtube3::api::ChannelAuditDetails
source · pub struct ChannelAuditDetails {
pub community_guidelines_good_standing: Option<bool>,
pub content_id_claims_good_standing: Option<bool>,
pub copyright_strikes_good_standing: Option<bool>,
}
Expand description
The auditDetails object encapsulates channel data that is relevant for YouTube Partners during the audit process.
This type is not used in any activity, and only used as part of another schema.
Fields§
§community_guidelines_good_standing: Option<bool>
Whether or not the channel respects the community guidelines.
content_id_claims_good_standing: Option<bool>
Whether or not the channel has any unresolved claims.
copyright_strikes_good_standing: Option<bool>
Whether or not the channel has any copyright strikes.
Trait Implementations§
source§impl Clone for ChannelAuditDetails
impl Clone for ChannelAuditDetails
source§fn clone(&self) -> ChannelAuditDetails
fn clone(&self) -> ChannelAuditDetails
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 ChannelAuditDetails
impl Debug for ChannelAuditDetails
source§impl Default for ChannelAuditDetails
impl Default for ChannelAuditDetails
source§fn default() -> ChannelAuditDetails
fn default() -> ChannelAuditDetails
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ChannelAuditDetails
impl<'de> Deserialize<'de> for ChannelAuditDetails
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 ChannelAuditDetails
impl Serialize for ChannelAuditDetails
impl Part for ChannelAuditDetails
Auto Trait Implementations§
impl RefUnwindSafe for ChannelAuditDetails
impl Send for ChannelAuditDetails
impl Sync for ChannelAuditDetails
impl Unpin for ChannelAuditDetails
impl UnwindSafe for ChannelAuditDetails
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