pub enum TransportHint {
Rtp,
Aes67,
Custom,
}Available on crate feature
distributed only.Expand description
Hint at which sonicbrew transport (M09) will carry a network link.
audio-graph-bsd never interprets this value; sonicbrew’s
net-rtp-aes67 crate selects the concrete socket/pacing implementation.
Variants§
Rtp
Plain RTP/UDP transport.
Aes67
AES67-compliant RTP (PTP-aligned, professional media).
Custom
A caller-defined transport chosen by sonicbrew.
Trait Implementations§
Source§impl Clone for TransportHint
impl Clone for TransportHint
Source§fn clone(&self) -> TransportHint
fn clone(&self) -> TransportHint
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 moreimpl Copy for TransportHint
Source§impl Debug for TransportHint
impl Debug for TransportHint
Source§impl<'de> Deserialize<'de> for TransportHint
impl<'de> Deserialize<'de> for TransportHint
Source§fn 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
impl Eq for TransportHint
Source§impl Hash for TransportHint
impl Hash for TransportHint
Source§impl PartialEq for TransportHint
impl PartialEq for TransportHint
Source§impl Serialize for TransportHint
impl Serialize for TransportHint
impl StructuralPartialEq for TransportHint
Auto Trait Implementations§
impl Freeze for TransportHint
impl RefUnwindSafe for TransportHint
impl Send for TransportHint
impl Sync for TransportHint
impl Unpin for TransportHint
impl UnsafeUnpin for TransportHint
impl UnwindSafe for TransportHint
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