pub struct HardwareFcport {
pub id: Option<String>,
pub rate: Option<String>,
pub state: Option<String>,
pub topology: Option<String>,
pub wwnn: Option<String>,
pub wwpn: Option<String>,
}
Fields§
§id: Option<String>
The unique display id
rate: Option<String>
§state: Option<String>
State of the port
topology: Option<String>
§wwnn: Option<String>
World wide node name of the port
wwpn: Option<String>
World wide port name of the port
Trait Implementations§
Source§impl Debug for HardwareFcport
impl Debug for HardwareFcport
Source§impl<'de> Deserialize<'de> for HardwareFcport
impl<'de> Deserialize<'de> for HardwareFcport
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 HardwareFcport
impl RefUnwindSafe for HardwareFcport
impl Send for HardwareFcport
impl Sync for HardwareFcport
impl Unpin for HardwareFcport
impl UnwindSafe for HardwareFcport
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more