[][src]Struct lsm::TargetPort

pub struct TargetPort {
    pub id: String,
    pub port_type: PortType,
    pub service_address: String,
    pub network_address: String,
    pub physical_address: String,
    pub physical_name: String,
    pub system_id: String,
    // some fields omitted
}

Represent a target port which is the front-end port of storage system which storage user/client connect to and get storage service from.

Fields

id: String

Identifier.

port_type: PortType

Type of port.

service_address: String

The address used by upper layer like FC and iSCSI:

network_address: String

The address used by network layer like FC and TCP/IP:

physical_address: String

The address used by physical layer like FC-0 and MAC:

physical_name: String

The name of physical port. Administrator could use this name to locate the port on storage system. E.g. 'eth0'

system_id: String

Identifier of owner system.

Trait Implementations

impl Clone for TargetPort[src]

impl Debug for TargetPort[src]

impl<'de> Deserialize<'de> for TargetPort[src]

Auto Trait Implementations

impl RefUnwindSafe for TargetPort

impl Send for TargetPort

impl Sync for TargetPort

impl Unpin for TargetPort

impl UnwindSafe for TargetPort

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.