pub struct PortEndpoint {
pub conference_id: u32,
pub call_reference: u32,
pub passthrough_party_id: u32,
pub address: IpAddr,
pub rtp_port: u16,
pub rtcp_port: u16,
pub media_type: Option<MediaType>,
}Expand description
Allocated RTP/RTCP endpoint returned for a media flow.
Fields§
§conference_id: u32§call_reference: u32§passthrough_party_id: u32§address: IpAddr§rtp_port: u16§rtcp_port: u16§media_type: Option<MediaType>Trait Implementations§
Source§impl Clone for PortEndpoint
impl Clone for PortEndpoint
Source§fn clone(&self) -> PortEndpoint
fn clone(&self) -> PortEndpoint
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PortEndpoint
impl Debug for PortEndpoint
impl Eq for PortEndpoint
Source§impl PartialEq for PortEndpoint
impl PartialEq for PortEndpoint
impl StructuralPartialEq for PortEndpoint
Auto Trait Implementations§
impl Freeze for PortEndpoint
impl RefUnwindSafe for PortEndpoint
impl Send for PortEndpoint
impl Sync for PortEndpoint
impl Unpin for PortEndpoint
impl UnsafeUnpin for PortEndpoint
impl UnwindSafe for PortEndpoint
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