Struct dropbox_sdk::sharing::AudienceExceptions
source · [−]#[non_exhaustive]pub struct AudienceExceptions {
pub count: u32,
pub exceptions: Vec<AudienceExceptionContentInfo>,
}Available on crate feature
dbx_sharing only.Expand description
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)
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
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
sourceimpl AudienceExceptions
impl AudienceExceptions
pub fn new(count: u32, exceptions: Vec<AudienceExceptionContentInfo>) -> Self
Trait Implementations
sourceimpl Clone for AudienceExceptions
impl Clone for AudienceExceptions
sourcefn clone(&self) -> AudienceExceptions
fn clone(&self) -> AudienceExceptions
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for AudienceExceptions
impl Debug for AudienceExceptions
sourceimpl<'de> Deserialize<'de> for AudienceExceptions
impl<'de> Deserialize<'de> for AudienceExceptions
sourcefn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<AudienceExceptions> for AudienceExceptions
impl PartialEq<AudienceExceptions> for AudienceExceptions
sourcefn eq(&self, other: &AudienceExceptions) -> bool
fn eq(&self, other: &AudienceExceptions) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &AudienceExceptions) -> bool
fn ne(&self, other: &AudienceExceptions) -> bool
This method tests for !=.
sourceimpl Serialize for AudienceExceptions
impl Serialize for AudienceExceptions
impl Eq for AudienceExceptions
impl StructuralEq for AudienceExceptions
impl StructuralPartialEq for AudienceExceptions
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more