pub trait INetworkConnectionCostEvents_Impl: Sized {
    // Required methods
    fn ConnectionCostChanged(
        &self,
        connectionid: &GUID,
        newcost: u32,
    ) -> Result<()>;
    fn ConnectionDataPlanStatusChanged(&self, connectionid: &GUID) -> Result<()>;
}

Required Methods§

fn ConnectionCostChanged(&self, connectionid: &GUID, newcost: u32) -> Result<()>

fn ConnectionDataPlanStatusChanged(&self, connectionid: &GUID) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§