nmrs 2.3.0

A Rust library for NetworkManager over D-Bus
Documentation
//! D-Bus proxy interfaces for NetworkManager.
//!
//! This module contains low-level D-Bus proxy definitions for communicating
//! with NetworkManager over the system bus.

mod access_point;
mod active_connection;
mod bluetooth;
mod device;
mod main_nm;
mod wired;
mod wireless;

pub(crate) use access_point::NMAccessPointProxy;
pub(crate) use active_connection::NMActiveConnectionProxy;
pub(crate) use bluetooth::{BluezDeviceExtProxy, NMBluetoothProxy};
pub(crate) use device::NMDeviceProxy;
pub(crate) use main_nm::NMProxy;
pub(crate) use wired::NMWiredProxy;
pub(crate) use wireless::NMWirelessProxy;