pub struct NicPartitioning {
pub npar_capable: Option<Option<Boolean>>,
pub npar_enabled: Option<Option<Boolean>>,
}Expand description
NIC Partitioning capability, status, and configuration for a controller.
This type shall contain the capability, status, and configuration values for a controller.
Fields§
§npar_capable: Option<Option<Boolean>>An indication of whether the controller supports NIC function partitioning.
This property shall indicate whether the controller supports NIC function partitioning.
npar_enabled: Option<Option<Boolean>>An indication of whether NIC function partitioning is active on this controller.
This property shall indicate whether NIC function partitioning is active on this controller.
Trait Implementations§
Source§impl Debug for NicPartitioning
impl Debug for NicPartitioning
Source§impl<'de> Deserialize<'de> for NicPartitioning
impl<'de> Deserialize<'de> for NicPartitioning
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Send for NicPartitioning
SAFETY: All generated data types are Send
impl Sync for NicPartitioning
SAFETY: All generated data types are Sync
Auto Trait Implementations§
impl Freeze for NicPartitioning
impl RefUnwindSafe for NicPartitioning
impl Unpin for NicPartitioning
impl UnsafeUnpin for NicPartitioning
impl UnwindSafe for NicPartitioning
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more