//! Contains the `Credentials` struct, which contains all keys, IDs, organizations and other identity-related and security-related data that is persistent in a `Client`
/// Contains information necessary to make requests against the `DNClient` API.
pubstructCredentials{
/// The assigned Host ID that this client represents
pubhost_id: String,
/// The ed25519 private key used to sign requests against the API
pubed_privkey: SigningKey,
/// The counter used in the other API requests. It is unknown what the purpose of this is, but the original client persists it and it is needed for API calls.
pubcounter: u32,
/// The set of trusted ed25519 keys that may be used by the API to sign API responses.