veilid-tools 0.5.5

A collection of baseline tools for Rust development use by Veilid and Veilid-enabled Rust applications
Documentation
use super::*;
use std::io;

pub struct PlatformSupportWasm {}

impl PlatformSupportWasm {
    pub fn new() -> Self {
        PlatformSupportWasm {}
    }

    #[expect(clippy::unused_async)]
    pub async fn get_interfaces(
        &mut self,
        interfaces: &mut BTreeMap<String, NetworkInterface>,
    ) -> io::Result<()> {
        interfaces.clear();
        Ok(())
    }
}