[][src]Struct google_drive2::TeamDriveRestrictions

pub struct TeamDriveRestrictions {
    pub admin_managed_restrictions: Option<bool>,
    pub copy_requires_writer_permission: Option<bool>,
    pub domain_users_only: Option<bool>,
    pub team_members_only: Option<bool>,
}

A set of restrictions that apply to this Team Drive or items inside this Team Drive.

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

Fields

admin_managed_restrictions: Option<bool>

Whether administrative privileges on this Team Drive are required to modify restrictions.

copy_requires_writer_permission: Option<bool>

Whether the options to copy, print, or download files inside this Team Drive, should be disabled for readers and commenters. When this restriction is set to true, it will override the similarly named field to true for any file inside this Team Drive.

domain_users_only: Option<bool>

Whether access to this Team Drive and items inside this Team Drive is restricted to users of the domain to which this Team Drive belongs. This restriction may be overridden by other sharing policies controlled outside of this Team Drive.

team_members_only: Option<bool>

Whether access to items inside this Team Drive is restricted to members of this Team Drive.

Trait Implementations

impl Part for TeamDriveRestrictions[src]

impl NestedType for TeamDriveRestrictions[src]

impl Clone for TeamDriveRestrictions[src]

impl Default for TeamDriveRestrictions[src]

impl Debug for TeamDriveRestrictions[src]

impl Serialize for TeamDriveRestrictions[src]

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

Auto Trait Implementations

Blanket Implementations

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 = !

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Typeable for T where
    T: Any

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