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: Option<CencPssh>,
pub default_KID: Option<String>,
pub value: Option<String>,
}
Expand description
Contains information on DRM (rights management / encryption) mechanisms used in the stream, such as Widevine and Playready. Note that this library is not able to download content with DRM. 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: Option<CencPssh>
§default_KID: Option<String>
§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