Struct TMediaMTXGlobalConfig

Source
pub struct TMediaMTXGlobalConfig {
Show 65 fields pub log_level: String, pub log_destinations: Vec<String>, pub log_file: String, pub read_timeout: String, pub write_timeout: String, pub write_queue_size: i32, pub udp_max_payload_size: i32, pub external_authentication_url: Option<String>, pub api: bool, pub api_address: String, pub metrics: bool, pub metrics_address: String, pub pprof: bool, pub pprof_address: String, pub run_on_connect: String, pub run_on_connect_restart: bool, pub run_on_disconnect: String, pub rtsp: bool, pub protocols: Vec<String>, pub encryption: String, pub rtsp_address: String, pub rtsps_address: String, pub rtp_address: String, pub rtcp_address: String, pub multicast_ip_range: Option<String>, pub multicast_rtp_port: Option<i32>, pub multicast_rtcp_port: Option<i32>, pub server_key: String, pub server_cert: String, pub auth_methods: Vec<String>, pub rtmp: bool, pub rtmp_address: String, pub rtmp_encryption: String, pub rtmps_address: String, pub rtmp_server_key: String, pub rtmp_server_cert: String, pub hls: bool, pub hls_address: String, pub hls_encryption: bool, pub hls_server_key: String, pub hls_server_cert: String, pub hls_always_remux: bool, pub hls_variant: String, pub hls_segment_count: i32, pub hls_segment_duration: String, pub hls_part_duration: String, pub hls_segment_max_size: String, pub hls_allow_origin: String, pub hls_trusted_proxies: Vec<String>, pub hls_directory: String, pub webrtc: bool, pub webrtc_address: String, pub webrtc_encryption: bool, pub webrtc_server_key: String, pub webrtc_server_cert: String, pub webrtc_allow_origin: String, pub webrtc_trusted_proxies: Vec<String>, pub webrtc_local_udp_address: Option<String>, pub webrtc_local_tcp_address: Option<String>, pub webrtc_ips_from_interfaces: Option<bool>, pub webrtc_ips_from_interfaces_list: Option<Vec<String>>, pub webrtc_additional_hosts: Vec<String>, pub webrtc_ice_servers2: Option<Vec<WebRTCICEServer>>, pub srt: bool, pub srt_address: String,
}

Fields§

§log_level: String§log_destinations: Vec<String>§log_file: String§read_timeout: String§write_timeout: String§write_queue_size: i32§udp_max_payload_size: i32§external_authentication_url: Option<String>§api: bool§api_address: String§metrics: bool§metrics_address: String§pprof: bool§pprof_address: String§run_on_connect: String§run_on_connect_restart: bool§run_on_disconnect: String§rtsp: bool§protocols: Vec<String>§encryption: String§rtsp_address: String§rtsps_address: String§rtp_address: String§rtcp_address: String§multicast_ip_range: Option<String>§multicast_rtp_port: Option<i32>§multicast_rtcp_port: Option<i32>§server_key: String§server_cert: String§auth_methods: Vec<String>§rtmp: bool§rtmp_address: String§rtmp_encryption: String§rtmps_address: String§rtmp_server_key: String§rtmp_server_cert: String§hls: bool§hls_address: String§hls_encryption: bool§hls_server_key: String§hls_server_cert: String§hls_always_remux: bool§hls_variant: String§hls_segment_count: i32§hls_segment_duration: String§hls_part_duration: String§hls_segment_max_size: String§hls_allow_origin: String§hls_trusted_proxies: Vec<String>§hls_directory: String§webrtc: bool§webrtc_address: String§webrtc_encryption: bool§webrtc_server_key: String§webrtc_server_cert: String§webrtc_allow_origin: String§webrtc_trusted_proxies: Vec<String>§webrtc_local_udp_address: Option<String>§webrtc_local_tcp_address: Option<String>§webrtc_ips_from_interfaces: Option<bool>§webrtc_ips_from_interfaces_list: Option<Vec<String>>§webrtc_additional_hosts: Vec<String>§webrtc_ice_servers2: Option<Vec<WebRTCICEServer>>§srt: bool§srt_address: String

Trait Implementations§

Source§

impl Clone for TMediaMTXGlobalConfig

Source§

fn clone(&self) -> TMediaMTXGlobalConfig

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for TMediaMTXGlobalConfig

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for TMediaMTXGlobalConfig

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Serialize for TMediaMTXGlobalConfig

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> ErasedDestructor for T
where T: 'static,