pub trait StationSocketQos:
Debug
+ Send
+ Sync {
// Required method
fn apply(&self, qos: SignalingQos) -> SocketQosReport;
}Expand description
Session-owned capability for changing the underlying signaling socket.
Implementations attempt DSCP and socket priority independently. A partial failure is returned in the report and must not terminate the station session.
Required Methods§
fn apply(&self, qos: SignalingQos) -> SocketQosReport
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".