Lines Matching refs:Protocol
182 impl From<rf::Protocol> for nci::RfProtocolType {
183 fn from(protocol: rf::Protocol) -> Self { in from()
185 rf::Protocol::Undetermined => nci::RfProtocolType::Undetermined, in from()
186 rf::Protocol::T1t => nci::RfProtocolType::T1t, in from()
187 rf::Protocol::T2t => nci::RfProtocolType::T2t, in from()
188 rf::Protocol::T3t => nci::RfProtocolType::T3t, in from()
189 rf::Protocol::IsoDep => nci::RfProtocolType::IsoDep, in from()
190 rf::Protocol::NfcDep => nci::RfProtocolType::NfcDep, in from()
191 rf::Protocol::T5t => nci::RfProtocolType::T5t, in from()
192 rf::Protocol::Ndef => nci::RfProtocolType::Ndef, in from()
197 impl From<nci::RfProtocolType> for rf::Protocol { implementation
200 nci::RfProtocolType::Undetermined => rf::Protocol::Undetermined, in from()
201 nci::RfProtocolType::T1t => rf::Protocol::T1t, in from()
202 nci::RfProtocolType::T2t => rf::Protocol::T2t, in from()
203 nci::RfProtocolType::T3t => rf::Protocol::T3t, in from()
204 nci::RfProtocolType::IsoDep => rf::Protocol::IsoDep, in from()
205 nci::RfProtocolType::NfcDep => rf::Protocol::NfcDep, in from()
206 nci::RfProtocolType::T5t => rf::Protocol::T5t, in from()
207 nci::RfProtocolType::Ndef => rf::Protocol::Ndef, in from()