pub struct ConsumerDumpRef<'a>(/* private fields */);
Expand description
Reference to a deserialized ConsumerDump.
Implementations§
Source§impl<'a> ConsumerDumpRef<'a>
impl<'a> ConsumerDumpRef<'a>
Sourcepub fn base(&self) -> Result<BaseConsumerDumpRef<'a>>
pub fn base(&self) -> Result<BaseConsumerDumpRef<'a>>
Getter for the base
field.
Sourcepub fn rtp_streams(&self) -> Result<Vector<'a, Result<DumpRef<'a>>>>
pub fn rtp_streams(&self) -> Result<Vector<'a, Result<DumpRef<'a>>>>
Getter for the rtp_streams
field.
Sourcepub fn preferred_spatial_layer(&self) -> Result<Option<i16>>
pub fn preferred_spatial_layer(&self) -> Result<Option<i16>>
Getter for the preferred_spatial_layer
field.
Sourcepub fn target_spatial_layer(&self) -> Result<Option<i16>>
pub fn target_spatial_layer(&self) -> Result<Option<i16>>
Getter for the target_spatial_layer
field.
Sourcepub fn current_spatial_layer(&self) -> Result<Option<i16>>
pub fn current_spatial_layer(&self) -> Result<Option<i16>>
Getter for the current_spatial_layer
field.
Sourcepub fn preferred_temporal_layer(&self) -> Result<Option<i16>>
pub fn preferred_temporal_layer(&self) -> Result<Option<i16>>
Getter for the preferred_temporal_layer
field.
Sourcepub fn target_temporal_layer(&self) -> Result<Option<i16>>
pub fn target_temporal_layer(&self) -> Result<Option<i16>>
Getter for the target_temporal_layer
field.
Sourcepub fn current_temporal_layer(&self) -> Result<Option<i16>>
pub fn current_temporal_layer(&self) -> Result<Option<i16>>
Getter for the current_temporal_layer
field.
Trait Implementations§
Source§impl<'a> Clone for ConsumerDumpRef<'a>
impl<'a> Clone for ConsumerDumpRef<'a>
Source§fn clone(&self) -> ConsumerDumpRef<'a>
fn clone(&self) -> ConsumerDumpRef<'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 ConsumerDumpRef<'a>
impl<'a> Debug for ConsumerDumpRef<'a>
Source§impl<'a> ReadAsRoot<'a> for ConsumerDumpRef<'a>
impl<'a> ReadAsRoot<'a> for ConsumerDumpRef<'a>
Source§impl<'a> TryFrom<ConsumerDumpRef<'a>> for ConsumerDump
impl<'a> TryFrom<ConsumerDumpRef<'a>> for ConsumerDump
impl<'a> Copy for ConsumerDumpRef<'a>
Auto Trait Implementations§
impl<'a> Freeze for ConsumerDumpRef<'a>
impl<'a> RefUnwindSafe for ConsumerDumpRef<'a>
impl<'a> Send for ConsumerDumpRef<'a>
impl<'a> Sync for ConsumerDumpRef<'a>
impl<'a> Unpin for ConsumerDumpRef<'a>
impl<'a> UnwindSafe for ConsumerDumpRef<'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