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 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: Vec<CencPssh>
§default_KID: Option<String>
The DRM key identifier.
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 PartialEq<ContentProtection> for ContentProtection
impl PartialEq<ContentProtection> 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