Struct dropbox_sdk::sharing::AudienceExceptions  [−][src]
#[non_exhaustive]pub struct AudienceExceptions { pub count: u32, pub exceptions: Vec<AudienceExceptionContentInfo>, }
dbx_sharing only.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 (Non-exhaustive)
Struct {{ .. }} syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.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.
Implementations
impl AudienceExceptions[src]
impl AudienceExceptions[src]pub fn new(count: u32, exceptions: Vec<AudienceExceptionContentInfo>) -> Self[src]
Trait Implementations
impl Clone for AudienceExceptions[src]
impl Clone for AudienceExceptions[src]fn clone(&self) -> AudienceExceptions[src]
fn clone(&self) -> AudienceExceptions[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]Performs copy-assignment from source. Read more
impl Debug for AudienceExceptions[src]
impl Debug for AudienceExceptions[src]impl<'de> Deserialize<'de> for AudienceExceptions[src]
impl<'de> Deserialize<'de> for AudienceExceptions[src]fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>[src]
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>[src]Deserialize this value from the given Serde deserializer. Read more
impl PartialEq<AudienceExceptions> for AudienceExceptions[src]
impl PartialEq<AudienceExceptions> for AudienceExceptions[src]fn eq(&self, other: &AudienceExceptions) -> bool[src]
fn eq(&self, other: &AudienceExceptions) -> bool[src]This method tests for self and other values to be equal, and is used
by ==. Read more
fn ne(&self, other: &AudienceExceptions) -> bool[src]
fn ne(&self, other: &AudienceExceptions) -> bool[src]This method tests for !=.
impl Serialize for AudienceExceptions[src]
impl Serialize for AudienceExceptions[src]impl StructuralPartialEq for AudienceExceptions[src]
Auto Trait Implementations
impl RefUnwindSafe for AudienceExceptions
impl Send for AudienceExceptions
impl Sync for AudienceExceptions
impl Unpin for AudienceExceptions
impl UnwindSafe for AudienceExceptions
Blanket Implementations
impl<T> BorrowMut<T> for T where
    T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
    T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
    T: Clone, [src]
impl<T> ToOwned for T where
    T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,