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;
}