[][src]Struct yubihsm::setup::report::Report

pub struct Report {
    pub version: Version,
    pub uuid: Uuid,
    pub hostname: Option<String>,
    pub username: Option<String>,
    pub date: DateTime<Utc>,
    pub software: String,
}

YubiHSM provisioning report

Fields

version: Version

Version of the report

uuid: Uuid

UUID which uniquely identifies this provisioning report

hostname: Option<String>

Hostname the device was provisioned on

username: Option<String>

Username of who provisioned the device

date: DateTime<Utc>

Date the device was provisioned

software: String

Software that performed the provisioning

Methods

impl Report[src]

pub fn new() -> Self[src]

Make a new yubihsm::setup::Report from the ambient environment state

pub fn to_json(&self) -> String[src]

Serialize a report as JSON

pub fn store(
    &self,
    client: &mut Client,
    report_object_id: Id
) -> Result<(), Error>
[src]

Store this report in the YubiHSM at the given object ID

Trait Implementations

impl Clone for Report[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Report[src]

impl FromStr for Report[src]

type Err = Error

The associated error which can be returned from parsing.

fn from_str(s: &str) -> Result<Self, Error>[src]

Parse a yubihsm::setup::Report from its JSON serialization

impl Serialize for Report[src]

impl<'de> Deserialize<'de> for Report[src]

Auto Trait Implementations

impl Send for Report

impl Sync for Report

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Same for T

type Output = T

Should always be Self

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]