[][src]Struct dropbox_sdk::sharing::ListFileMembersArg

pub struct ListFileMembersArg {
    pub file: PathOrId,
    pub actions: Option<Vec<MemberAction>>,
    pub include_inherited: bool,
    pub limit: u32,
}
This is supported on crate feature dbx_sharing only.

Arguments for list_file_members().

Fields

file: PathOrId

The file for which you want to see members.

actions: Option<Vec<MemberAction>>

The actions for which to return permissions on a member.

include_inherited: bool

Whether to include members who only have access from a parent shared folder.

limit: u32

Number of members to return max per query. Defaults to 100 if no limit is specified.

Implementations

impl ListFileMembersArg[src]

pub fn new(file: PathOrId) -> Self[src]

pub fn with_actions(self, value: Option<Vec<MemberAction>>) -> Self[src]

pub fn with_include_inherited(self, value: bool) -> Self[src]

pub fn with_limit(self, value: u32) -> Self[src]

Trait Implementations

impl Debug for ListFileMembersArg[src]

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

impl Serialize for ListFileMembersArg[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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.