Class: PKCS11::CK_SESSION_INFO
Constant Summary collapse
- SIZEOF_STRUCT =
Size of corresponding C struct in bytes
Integer
Instance Attribute Summary collapse
-
#flags ⇒ Integer
Accessor for flags (CK_ULONG).
-
#slotID ⇒ Integer
Accessor for slotID (CK_ULONG).
-
#state ⇒ Integer
Accessor for state (CK_ULONG).
-
#ulDeviceError ⇒ Integer
Accessor for ulDeviceError (CK_ULONG).
Instance Method Summary collapse
-
#members ⇒ Array<String>
Attributes of this struct.
-
#to_s ⇒ String
Binary copy of the C struct.
Methods inherited from CStruct
Instance Attribute Details
#flags ⇒ Integer
Returns accessor for flags (CK_ULONG).
105 106 107 |
# File 'ext/pk11_struct.doc', line 105 def flags @flags end |
#slotID ⇒ Integer
Returns accessor for slotID (CK_ULONG).
101 102 103 |
# File 'ext/pk11_struct.doc', line 101 def slotID @slotID end |
#state ⇒ Integer
Returns accessor for state (CK_ULONG).
103 104 105 |
# File 'ext/pk11_struct.doc', line 103 def state @state end |
#ulDeviceError ⇒ Integer
Returns accessor for ulDeviceError (CK_ULONG).
107 108 109 |
# File 'ext/pk11_struct.doc', line 107 def ulDeviceError @ulDeviceError end |
Instance Method Details
#members ⇒ Array<String>
Returns Attributes of this struct.
99 |
# File 'ext/pk11_struct.doc', line 99 def members; end |
#to_s ⇒ String
Returns Binary copy of the C struct.
97 |
# File 'ext/pk11_struct.doc', line 97 def to_s; end |