Struct randomorg::RandomResult[][src]

pub struct RandomResult<RandomDataType> {
    pub random: RandomData<RandomDataType>,
    pub bits_used: u64,
    pub bits_left: u64,
    pub requests_left: u64,
    pub advisory_delay: u64,
}

A random.org response with random data.

Fields

random: RandomData<RandomDataType>

This object encapsulates the random numbers and associated data. It contains the following properties.

bits_used: u64

An integer containing the number of true random bits used to complete this request.

bits_left: u64

An integer containing the (estimated) number of remaining true random bits available to the client.

requests_left: u64

An integer containing the (estimated) number of remaining API requests available to the client.

advisory_delay: u64

An integer containing the recommended number of milliseconds that the client should delay before issuing another request.

Trait Implementations

impl<RandomDataType: Clone> Clone for RandomResult<RandomDataType>[src]

impl<RandomDataType: Debug> Debug for RandomResult<RandomDataType>[src]

impl<'de, RandomDataType> Deserialize<'de> for RandomResult<RandomDataType> where
    RandomDataType: Deserialize<'de>, 
[src]

Auto Trait Implementations

impl<RandomDataType> RefUnwindSafe for RandomResult<RandomDataType> where
    RandomDataType: RefUnwindSafe
[src]

impl<RandomDataType> Send for RandomResult<RandomDataType> where
    RandomDataType: Send
[src]

impl<RandomDataType> Sync for RandomResult<RandomDataType> where
    RandomDataType: Sync
[src]

impl<RandomDataType> Unpin for RandomResult<RandomDataType> where
    RandomDataType: Unpin
[src]

impl<RandomDataType> UnwindSafe for RandomResult<RandomDataType> where
    RandomDataType: UnwindSafe
[src]

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,