pub struct NicPartitioning {
pub npar_capable: Option<bool>,
pub npar_enabled: Option<bool>,
}
Expand description
NIC Partitioning capability, status, and configuration for a controller.
Fields§
§npar_capable: Option<bool>
An indication of whether the controller supports NIC function partitioning.
npar_enabled: Option<bool>
An indication of whether NIC function partitioning is active on this controller.
Trait Implementations§
Source§impl Clone for NicPartitioning
impl Clone for NicPartitioning
Source§fn clone(&self) -> NicPartitioning
fn clone(&self) -> NicPartitioning
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for NicPartitioning
impl Debug for NicPartitioning
Source§impl Default for NicPartitioning
impl Default 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
Source§impl Metadata<'static> for NicPartitioning
impl Metadata<'static> for NicPartitioning
Source§const JSON_SCHEMA: &'static str = "NetworkAdapter.v1_9_0.json"
const JSON_SCHEMA: &'static str = "NetworkAdapter.v1_9_0.json"
Name of the json-schema file that describes the entity that implements this trait. Should
be only the file name, so that it can be resolved relative to the URL of the redfish
service, or the public Redfish schema index.
Auto Trait Implementations§
impl Freeze for NicPartitioning
impl RefUnwindSafe for NicPartitioning
impl Send for NicPartitioning
impl Sync for NicPartitioning
impl Unpin 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