ethtool-xujunjie 0.2.5

Linux Ethtool Communication Library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: MIT

mod attr;
mod get;
mod handle;
mod set;

pub(crate) use attr::parse_channel_nlas;

pub use attr::EthtoolChannelAttr;
pub use get::EthtoolChannelGetRequest;
pub use handle::EthtoolChannelHandle;
pub use set::EthtoolChannelSetRequest;