Struct dash_mpd::ContentProtection 
source · pub struct ContentProtection {
    pub robustness: Option<String>,
    pub refId: Option<String>,
    pub cpref: Option<String>,
    pub schemeIdUri: Option<String>,
    pub cenc_pssh: Vec<CencPssh>,
    pub default_KID: Option<String>,
    pub laurl: Option<Laurl>,
    pub msprpro: Option<MsprPro>,
    pub mspr_is_encrypted: Option<MsprIsEncrypted>,
    pub mspr_iv_size: Option<MsprIVSize>,
    pub mspr_kid: Option<MsprKid>,
    pub value: Option<String>,
}Expand description
Contains information on DRM (rights management / encryption) mechanisms used in the stream, such as Widevine and Playready. If this node is not present, no content protection is applied by the source.
Fields§
§robustness: Option<String>§refId: Option<String>§cpref: Option<String>§schemeIdUri: Option<String>§cenc_pssh: Vec<CencPssh>§default_KID: Option<String>The DRM key identifier.
laurl: Option<Laurl>§msprpro: Option<MsprPro>§mspr_is_encrypted: Option<MsprIsEncrypted>§mspr_iv_size: Option<MsprIVSize>§mspr_kid: Option<MsprKid>§value: Option<String>Trait Implementations§
source§impl Clone for ContentProtection
 
impl Clone for ContentProtection
source§fn clone(&self) -> ContentProtection
 
fn clone(&self) -> ContentProtection
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 ContentProtection
 
impl Debug for ContentProtection
source§impl Default for ContentProtection
 
impl Default for ContentProtection
source§fn default() -> ContentProtection
 
fn default() -> ContentProtection
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ContentProtectionwhere
    ContentProtection: Default,
 
impl<'de> Deserialize<'de> for ContentProtectionwhere
    ContentProtection: Default,
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 Hash for ContentProtection
 
impl Hash for ContentProtection
source§impl PartialEq for ContentProtection
 
impl PartialEq for ContentProtection
source§fn eq(&self, other: &ContentProtection) -> bool
 
fn eq(&self, other: &ContentProtection) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl Serialize for ContentProtection
 
impl Serialize for ContentProtection
impl StructuralPartialEq for ContentProtection
Auto Trait Implementations§
impl RefUnwindSafe for ContentProtection
impl Send for ContentProtection
impl Sync for ContentProtection
impl Unpin for ContentProtection
impl UnwindSafe for ContentProtection
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