pub struct ReportListReadersResultParams {
pub requestId: String,
pub readers: Vec<String>,
}Expand description
Reports the successful result of a |SCardListReaders| call.
This maps to: PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga93b07815789b3cf2629d439ecf20f0d9 Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardlistreadersa
Fields§
§requestId: String§readers: Vec<String>Trait Implementations§
Source§impl Clone for ReportListReadersResultParams
impl Clone for ReportListReadersResultParams
Source§fn clone(&self) -> ReportListReadersResultParams
fn clone(&self) -> ReportListReadersResultParams
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 Default for ReportListReadersResultParams
impl Default for ReportListReadersResultParams
Source§fn default() -> ReportListReadersResultParams
fn default() -> ReportListReadersResultParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReportListReadersResultParams
impl<'de> Deserialize<'de> for ReportListReadersResultParams
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 ReportListReadersResultParams
impl RefUnwindSafe for ReportListReadersResultParams
impl Send for ReportListReadersResultParams
impl Sync for ReportListReadersResultParams
impl Unpin for ReportListReadersResultParams
impl UnsafeUnpin for ReportListReadersResultParams
impl UnwindSafe for ReportListReadersResultParams
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