pub struct ReportStatusResultParams {
pub requestId: String,
pub readerName: String,
pub state: ConnectionState,
pub atr: String,
pub protocol: Option<Protocol>,
}Expand description
Reports the successful result of a |SCardStatus| call.
This maps to: PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gae49c3c894ad7ac12a5b896bde70d0382 Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardstatusa
Fields§
§requestId: String§readerName: String§state: ConnectionState§atr: String§protocol: Option<Protocol>Implementations§
Trait Implementations§
Source§impl Clone for ReportStatusResultParams
impl Clone for ReportStatusResultParams
Source§fn clone(&self) -> ReportStatusResultParams
fn clone(&self) -> ReportStatusResultParams
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ReportStatusResultParams
impl Debug for ReportStatusResultParams
Source§impl Default for ReportStatusResultParams
impl Default for ReportStatusResultParams
Source§fn default() -> ReportStatusResultParams
fn default() -> ReportStatusResultParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReportStatusResultParams
impl<'de> Deserialize<'de> for ReportStatusResultParams
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 ReportStatusResultParams
impl RefUnwindSafe for ReportStatusResultParams
impl Send for ReportStatusResultParams
impl Sync for ReportStatusResultParams
impl Unpin for ReportStatusResultParams
impl UnsafeUnpin for ReportStatusResultParams
impl UnwindSafe for ReportStatusResultParams
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