[][src]Struct opensc_sys::sc_security_env

#[repr(C)]pub struct sc_security_env {
    pub flags: c_ulong,
    pub operation: c_int,
    pub algorithm: c_uint,
    pub algorithm_flags: c_uint,
    pub algorithm_ref: c_uint,
    pub file_ref: sc_path,
    pub key_ref: [c_uchar; 8],
    pub key_ref_len: size_t,
    pub target_file_ref: sc_path,
    pub supported_algos: [sc_supported_algo_info; 8],
    pub params: [sc_sec_env_param; 10],
}

Fields

flags: c_ulongoperation: c_intalgorithm: c_uintalgorithm_flags: c_uintalgorithm_ref: c_uintfile_ref: sc_pathkey_ref: [c_uchar; 8]key_ref_len: size_ttarget_file_ref: sc_pathsupported_algos: [sc_supported_algo_info; 8]params: [sc_sec_env_param; 10]

Trait Implementations

impl Clone for sc_security_env[src]

impl Copy for sc_security_env[src]

impl Debug for sc_security_env[src]

Auto Trait Implementations

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> 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.