Pure Rust client for YubiHSM2 devices with support for HTTP and
USB-based access to the device. Supports most HSM functionality
including ECDSA, Ed25519, HMAC, and RSA.
//! Object entries in list objects output
usecrate::object;useserde::{Deserialize, Serialize};/// Brief information about an object as included in `ListObjectsCommand`
#[derive(Clone, Debug, Deserialize, Serialize)]pubstructEntry{/// Object identifier
pubobject_id:object::Id,
/// Object type
pubobject_type:object::Type,
/// Sequence: number of times an object with this key ID and type has
/// previously existed
pubsequence:object::SequenceId,
}