#[non_exhaustive]pub struct AudienceExceptions {
pub count: u32,
pub exceptions: Vec<AudienceExceptionContentInfo>,
}
Available on crate features
sync_routes
and 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: u32
§exceptions: 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§
Source§impl AudienceExceptions
impl AudienceExceptions
pub fn new(count: u32, exceptions: Vec<AudienceExceptionContentInfo>) -> Self
Trait Implementations§
Source§impl Clone for AudienceExceptions
impl Clone for AudienceExceptions
Source§fn clone(&self) -> AudienceExceptions
fn clone(&self) -> AudienceExceptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AudienceExceptions
impl Debug for AudienceExceptions
Source§impl<'de> Deserialize<'de> for AudienceExceptions
impl<'de> Deserialize<'de> for AudienceExceptions
Source§fn 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
Source§impl PartialEq for AudienceExceptions
impl PartialEq for AudienceExceptions
Source§impl Serialize for AudienceExceptions
impl Serialize for AudienceExceptions
impl Eq for AudienceExceptions
impl StructuralPartialEq for AudienceExceptions
Auto Trait Implementations§
impl Freeze for AudienceExceptions
impl RefUnwindSafe for AudienceExceptions
impl Send for AudienceExceptions
impl Sync for AudienceExceptions
impl Unpin for AudienceExceptions
impl UnwindSafe for AudienceExceptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.