Struct randomorg::RandomData [] [src]

pub struct RandomData<T> {
    pub data: Vec<T>,
    pub completion_time: NaiveDateTime,
}

A random.org's produced random data (from generateIntegers method)

Fields

An array containing the sequence of numbers requested.

A time at which the request was completed.

Trait Implementations

impl<T: Debug> Debug for RandomData<T>
[src]

Formats the value using the given formatter.

impl<T: Clone> Clone for RandomData<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more