windows::Win32::System::DeploymentServices

Trait IWdsTransportMulticastSessionPolicy_Impl

pub trait IWdsTransportMulticastSessionPolicy_Impl: IWdsTransportCacheable_Impl {
    // Required methods
    fn SlowClientHandling(
        &self,
    ) -> Result<WDSTRANSPORT_SLOW_CLIENT_HANDLING_TYPE>;
    fn SetSlowClientHandling(
        &self,
        slowclienthandling: WDSTRANSPORT_SLOW_CLIENT_HANDLING_TYPE,
    ) -> Result<()>;
    fn AutoDisconnectThreshold(&self) -> Result<u32>;
    fn SetAutoDisconnectThreshold(&self, ulthreshold: u32) -> Result<()>;
    fn MultistreamStreamCount(&self) -> Result<u32>;
    fn SetMultistreamStreamCount(&self, ulstreamcount: u32) -> Result<()>;
    fn SlowClientFallback(&self) -> Result<VARIANT_BOOL>;
    fn SetSlowClientFallback(&self, bclientfallback: VARIANT_BOOL) -> Result<()>;
}

Required Methods§

fn SlowClientHandling(&self) -> Result<WDSTRANSPORT_SLOW_CLIENT_HANDLING_TYPE>

fn SetSlowClientHandling( &self, slowclienthandling: WDSTRANSPORT_SLOW_CLIENT_HANDLING_TYPE, ) -> Result<()>

fn AutoDisconnectThreshold(&self) -> Result<u32>

fn SetAutoDisconnectThreshold(&self, ulthreshold: u32) -> Result<()>

fn MultistreamStreamCount(&self) -> Result<u32>

fn SetMultistreamStreamCount(&self, ulstreamcount: u32) -> Result<()>

fn SlowClientFallback(&self) -> Result<VARIANT_BOOL>

fn SetSlowClientFallback(&self, bclientfallback: VARIANT_BOOL) -> Result<()>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§