#[non_exhaustive]pub struct Config {
pub listen: Option<SocketAddr>,
pub prefix: String,
pub latency: Duration,
}Expand description
SRT gateway configuration.
Construct via Config::default and set the fields you need, so new
options stay additive. The listener is disabled (and run stays pending)
unless listen is set, letting an embedding relay run
without SRT until it’s configured.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.listen: Option<SocketAddr>Address to listen on for SRT (e.g. 0.0.0.0:9000). When None, the SRT
gateway is disabled.
prefix: StringPrefix prepended to every broadcast path, for both publish and request.
Lets one listener namespace all of its streams (e.g. live/).
latency: DurationSRT receive latency: the negotiated buffer that trades delay for loss recovery.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Config
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnsafeUnpin for Config
impl UnwindSafe for Config
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