FakeNetcfgProxyInterface

Trait FakeNetcfgProxyInterface 

Source
pub trait FakeNetcfgProxyInterface: Send + Sync {
    type UpdatePropertiesResponseFut: Future<Output = Result<(), Error>> + Send;

    // Required method
    fn update_properties(
        &self,
        network_id: u64,
        is_default: bool,
        updates: &[PropertyUpdate],
    ) -> Self::UpdatePropertiesResponseFut;
}

Required Associated Types§

Required Methods§

Source

fn update_properties( &self, network_id: u64, is_default: bool, updates: &[PropertyUpdate], ) -> Self::UpdatePropertiesResponseFut

Implementors§