[][src]Struct dropbox_sdk::sharing::AudienceExceptions

pub struct AudienceExceptions {
    pub count: u32,
    pub exceptions: Vec<AudienceExceptionContentInfo>,
}

The total count and truncated list of information of content inside this folder that has a different audience than the link on this folder. This is only returned for folders.

Fields

count: u32exceptions: Vec<AudienceExceptionContentInfo>

A truncated list of some of the content that is an exception. The length of this list could be smaller than the count since it is only a sample but will not be empty as long as count is not 0.

Methods

impl AudienceExceptions[src]

pub fn new(count: u32, exceptions: Vec<AudienceExceptionContentInfo>) -> Self[src]

Trait Implementations

impl Debug for AudienceExceptions[src]

impl Serialize for AudienceExceptions[src]

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

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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

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