usecrate::lib_enum;usecrate::result::Error;lib_enum!{/// Represents the `sssf` field of the [Argument](super::Argument).
////// The SD Security Specific Field indicates the security protocol to use for data transfers to
/// the card.
SdSecuritySpecificField:u8{
default: ReplayProtectedMemoryBlock,
error: Error,/// Replay protected memory block.
////// This security mode provides a mechanism to securely write authenticated blocks to card
/// memory, and protect against replay attacks.
ReplayProtectedMemoryBlock =1,}}