pub struct HttpBoot {
pub boot_media_uri: Option<Option<String>>,
}Expand description
The HTTP and HTTPS boot capabilities, status, and configuration for a network device function.
This type shall describe the HTTP and HTTPS boot capabilities, status, and configuration values for a network device function.
Fields§
§boot_media_uri: Option<Option<String>>The URI of the boot media loaded with this network device function.
This property shall contain the URI of the boot media loaded with this network device function. An
empty string shall indicate no boot media is configured. All other values shall begin with
http:// or https://.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for HttpBoot
impl<'de> Deserialize<'de> for HttpBoot
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
Auto Trait Implementations§
impl Freeze for HttpBoot
impl RefUnwindSafe for HttpBoot
impl Send for HttpBoot
impl Sync for HttpBoot
impl Unpin for HttpBoot
impl UnsafeUnpin for HttpBoot
impl UnwindSafe for HttpBoot
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