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
sourceimpl Clone for ContentProtection
impl Clone for ContentProtection
sourcefn clone(&self) -> ContentProtection
fn clone(&self) -> ContentProtection
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for ContentProtection
impl Debug for ContentProtection
sourceimpl Default for ContentProtection
impl Default for ContentProtection
sourcefn default() -> ContentProtection
fn default() -> ContentProtection
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for ContentProtectionwhere
ContentProtection: Default,
impl<'de> Deserialize<'de> for ContentProtectionwhere
ContentProtection: Default,
sourcefn 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
sourceimpl Serialize for ContentProtection
impl Serialize 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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more