pub enum FileMemberActionIndividualResult {
Success(Option<AccessLevel>),
MemberError(FileMemberActionError),
}Available on crate feature
dbx_sharing only.Variants
Success(Option<AccessLevel>)
Member was successfully removed from this file. If AccessLevel is given, the member still has access via a parent shared folder.
MemberError(FileMemberActionError)
User was not able to perform this action.
Trait Implementations
sourceimpl Clone for FileMemberActionIndividualResult
impl Clone for FileMemberActionIndividualResult
sourcefn clone(&self) -> FileMemberActionIndividualResult
fn clone(&self) -> FileMemberActionIndividualResult
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<'de> Deserialize<'de> for FileMemberActionIndividualResult
impl<'de> Deserialize<'de> for FileMemberActionIndividualResult
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<FileMemberActionIndividualResult> for FileMemberActionIndividualResult
impl PartialEq<FileMemberActionIndividualResult> for FileMemberActionIndividualResult
sourcefn eq(&self, other: &FileMemberActionIndividualResult) -> bool
fn eq(&self, other: &FileMemberActionIndividualResult) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &FileMemberActionIndividualResult) -> bool
fn ne(&self, other: &FileMemberActionIndividualResult) -> bool
This method tests for !=.
impl Eq for FileMemberActionIndividualResult
impl StructuralEq for FileMemberActionIndividualResult
impl StructuralPartialEq for FileMemberActionIndividualResult
Auto Trait Implementations
impl RefUnwindSafe for FileMemberActionIndividualResult
impl Send for FileMemberActionIndividualResult
impl Sync for FileMemberActionIndividualResult
impl Unpin for FileMemberActionIndividualResult
impl UnwindSafe for FileMemberActionIndividualResult
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