[][src]Struct google_sheets4::Editors

pub struct Editors {
    pub domain_users_can_edit: Option<bool>,
    pub users: Option<Vec<String>>,
    pub groups: Option<Vec<String>>,
}

The editors of a protected range.

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

Fields

domain_users_can_edit: Option<bool>

True if anyone in the document's domain has edit access to the protected range. Domain protection is only supported on documents within a domain.

users: Option<Vec<String>>

The email addresses of users with edit access to the protected range.

groups: Option<Vec<String>>

The email addresses of groups with edit access to the protected range.

Trait Implementations

impl Part for Editors[src]

impl Default for Editors[src]

impl Clone for Editors[src]

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

Performs copy-assignment from source. Read more

impl Debug for Editors[src]

impl Serialize for Editors[src]

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

Auto Trait Implementations

impl Send for Editors

impl Unpin for Editors

impl Sync for Editors

impl UnwindSafe for Editors

impl RefUnwindSafe for Editors

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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

impl<T> Borrow<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

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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