1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//! Get auditing options which have been configured on the device.
//!
//! The following methods of [yubihsm::Client] implement this command:
//!
//! - [get_command_audit_option()]: get audit setting for a particular command
//! - [get_commands_audit_options()]: get audit settings for all command
//! - [get_force_audit_option()]: get option for forced auditing (ensure events are logged)
//!
//! For more information, see:
//! <https://developers.yubico.com/YubiHSM2/Commands/Get_Option.html>
//!
//! [yubihsm::Client]: https://docs.rs/yubihsm/latest/yubihsm/client/struct.Client.html
//! [get_command_audit_option()]: https://docs.rs/yubihsm/latest/yubihsm/client/struct.Client.html#method.get_command_audit_option
//! [get_commands_audit_options()]: https://docs.rs/yubihsm/latest/yubihsm/client/struct.Client.html#method.get_commands_audit_options
//! [get_force_audit_option()]: https://docs.rs/yubihsm/latest/yubihsm/client/struct.Client.html#method.get_force_audit_option
use crate::;
use ;
/// Request parameters for `command::get_option`
pub
/// Response from `command::get_option`
pub );