pub struct BootTargets {
pub boot_priority: Option<i64>,
pub lunid: Option<String>,
pub wwpn: Option<String>,
}
Expand description
A Fibre Channel boot target configured for a network device function.
Fields§
§boot_priority: Option<i64>
The relative priority for this entry in the boot targets array.
lunid: Option<String>
The logical unit number (LUN) ID from which to boot on the device to which the corresponding WWPN refers.
wwpn: Option<String>
The World Wide Port Name (WWPN) from which to boot.
Trait Implementations§
Source§impl Clone for BootTargets
impl Clone for BootTargets
Source§fn clone(&self) -> BootTargets
fn clone(&self) -> BootTargets
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 BootTargets
impl Debug for BootTargets
Source§impl Default for BootTargets
impl Default for BootTargets
Source§impl<'de> Deserialize<'de> for BootTargets
impl<'de> Deserialize<'de> for BootTargets
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 BootTargets
impl Metadata<'static> for BootTargets
Source§const JSON_SCHEMA: &'static str = "NetworkDeviceFunction.v1_9_0.json"
const JSON_SCHEMA: &'static str = "NetworkDeviceFunction.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 BootTargets
impl RefUnwindSafe for BootTargets
impl Send for BootTargets
impl Sync for BootTargets
impl Unpin for BootTargets
impl UnwindSafe for BootTargets
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