Searched refs:InitiatorType (Results 1 – 1 of 1) sorted by relevance
78 enum InitiatorType { enum84 impl fmt::Display for InitiatorType { implementation87 InitiatorType::Unknown => "Unknown initiator", in fmt()88 InitiatorType::Host => "Host initiated", in fmt()89 InitiatorType::Peer => "Peer initiated", in fmt()103 impl Into<InitiatorType> for AclState {104 fn into(self) -> InitiatorType { in into() argument106 AclState::Initiating => InitiatorType::Host, in into()107 AclState::Accepting => InitiatorType::Peer, in into()108 _ => InitiatorType::Unknown, in into()[all …]