[][src]Struct google_books1::ConcurrentAccessRestriction

pub struct ConcurrentAccessRestriction {
    pub nonce: Option<String>,
    pub kind: Option<String>,
    pub restricted: Option<bool>,
    pub volume_id: Option<String>,
    pub max_concurrent_devices: Option<i32>,
    pub device_allowed: Option<bool>,
    pub source: Option<String>,
    pub time_window_seconds: Option<i32>,
    pub signature: Option<String>,
    pub reason_code: Option<String>,
    pub message: Option<String>,
}

There is no detailed description.

This type is not used in any activity, and only used as part of another schema.

Fields

nonce: Option<String>

Client nonce for verification. Download access and client-validation only.

kind: Option<String>

Resource type.

restricted: Option<bool>

Whether this volume has any concurrent access restrictions.

volume_id: Option<String>

Identifies the volume for which this entry applies.

max_concurrent_devices: Option<i32>

The maximum number of concurrent access licenses for this volume.

device_allowed: Option<bool>

Whether access is granted for this (user, device, volume).

source: Option<String>

Client app identifier for verification. Download access and client-validation only.

time_window_seconds: Option<i32>

Time in seconds for license auto-expiration.

signature: Option<String>

Response signature.

reason_code: Option<String>

Error/warning reason code.

message: Option<String>

Error/warning message.

Trait Implementations

impl Clone for ConcurrentAccessRestriction[src]

impl Debug for ConcurrentAccessRestriction[src]

impl Default for ConcurrentAccessRestriction[src]

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

impl Part for ConcurrentAccessRestriction[src]

impl Serialize for ConcurrentAccessRestriction[src]

Auto Trait Implementations

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, 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<T> Typeable for T where
    T: Any