pub struct DumpResponseRef<'a>(/* private fields */);
Expand description
Reference to a deserialized DumpResponse.
Implementations§
Source§impl<'a> DumpResponseRef<'a>
impl<'a> DumpResponseRef<'a>
Sourcepub fn transport_ids(&self) -> Result<Vector<'a, Result<&'a str>>>
pub fn transport_ids(&self) -> Result<Vector<'a, Result<&'a str>>>
Getter for the transport_ids
field.
Sourcepub fn rtp_observer_ids(&self) -> Result<Vector<'a, Result<&'a str>>>
pub fn rtp_observer_ids(&self) -> Result<Vector<'a, Result<&'a str>>>
Getter for the rtp_observer_ids
field.
Sourcepub fn map_producer_id_consumer_ids(
&self,
) -> Result<Vector<'a, Result<StringStringArrayRef<'a>>>>
pub fn map_producer_id_consumer_ids( &self, ) -> Result<Vector<'a, Result<StringStringArrayRef<'a>>>>
Getter for the map_producer_id_consumer_ids
field.
Sourcepub fn map_consumer_id_producer_id(
&self,
) -> Result<Vector<'a, Result<StringStringRef<'a>>>>
pub fn map_consumer_id_producer_id( &self, ) -> Result<Vector<'a, Result<StringStringRef<'a>>>>
Getter for the map_consumer_id_producer_id
field.
Sourcepub fn map_producer_id_observer_ids(
&self,
) -> Result<Vector<'a, Result<StringStringArrayRef<'a>>>>
pub fn map_producer_id_observer_ids( &self, ) -> Result<Vector<'a, Result<StringStringArrayRef<'a>>>>
Getter for the map_producer_id_observer_ids
field.
Sourcepub fn map_data_producer_id_data_consumer_ids(
&self,
) -> Result<Vector<'a, Result<StringStringArrayRef<'a>>>>
pub fn map_data_producer_id_data_consumer_ids( &self, ) -> Result<Vector<'a, Result<StringStringArrayRef<'a>>>>
Getter for the map_data_producer_id_data_consumer_ids
field.
Sourcepub fn map_data_consumer_id_data_producer_id(
&self,
) -> Result<Vector<'a, Result<StringStringRef<'a>>>>
pub fn map_data_consumer_id_data_producer_id( &self, ) -> Result<Vector<'a, Result<StringStringRef<'a>>>>
Getter for the map_data_consumer_id_data_producer_id
field.
Trait Implementations§
Source§impl<'a> Clone for DumpResponseRef<'a>
impl<'a> Clone for DumpResponseRef<'a>
Source§fn clone(&self) -> DumpResponseRef<'a>
fn clone(&self) -> DumpResponseRef<'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 DumpResponseRef<'a>
impl<'a> Debug for DumpResponseRef<'a>
Source§impl<'a> ReadAsRoot<'a> for DumpResponseRef<'a>
impl<'a> ReadAsRoot<'a> for DumpResponseRef<'a>
Source§impl<'a> TryFrom<DumpResponseRef<'a>> for DumpResponse
impl<'a> TryFrom<DumpResponseRef<'a>> for DumpResponse
impl<'a> Copy for DumpResponseRef<'a>
Auto Trait Implementations§
impl<'a> Freeze for DumpResponseRef<'a>
impl<'a> RefUnwindSafe for DumpResponseRef<'a>
impl<'a> Send for DumpResponseRef<'a>
impl<'a> Sync for DumpResponseRef<'a>
impl<'a> Unpin for DumpResponseRef<'a>
impl<'a> UnwindSafe for DumpResponseRef<'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