pub struct EncodingMappingRef<'a>(/* private fields */);
Expand description
Reference to a deserialized EncodingMapping.
Implementations§
Source§impl<'a> EncodingMappingRef<'a>
impl<'a> EncodingMappingRef<'a>
Sourcepub fn scalability_mode(&self) -> Result<Option<&'a str>>
pub fn scalability_mode(&self) -> Result<Option<&'a str>>
Getter for the scalability_mode
field.
Sourcepub fn mapped_ssrc(&self) -> Result<u32>
pub fn mapped_ssrc(&self) -> Result<u32>
Getter for the mapped_ssrc
field.
Trait Implementations§
Source§impl<'a> Clone for EncodingMappingRef<'a>
impl<'a> Clone for EncodingMappingRef<'a>
Source§fn clone(&self) -> EncodingMappingRef<'a>
fn clone(&self) -> EncodingMappingRef<'a>
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<'a> Debug for EncodingMappingRef<'a>
impl<'a> Debug for EncodingMappingRef<'a>
Source§impl<'a> ReadAsRoot<'a> for EncodingMappingRef<'a>
impl<'a> ReadAsRoot<'a> for EncodingMappingRef<'a>
Source§impl<'a> TryFrom<EncodingMappingRef<'a>> for EncodingMapping
impl<'a> TryFrom<EncodingMappingRef<'a>> for EncodingMapping
impl<'a> Copy for EncodingMappingRef<'a>
Auto Trait Implementations§
impl<'a> Freeze for EncodingMappingRef<'a>
impl<'a> RefUnwindSafe for EncodingMappingRef<'a>
impl<'a> Send for EncodingMappingRef<'a>
impl<'a> Sync for EncodingMappingRef<'a>
impl<'a> Unpin for EncodingMappingRef<'a>
impl<'a> UnwindSafe for EncodingMappingRef<'a>
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