pub struct AuthAccessAccessItemFileFilePermissions {
pub dacl: Option<String>,
pub delete_child: Option<String>,
pub expected: Option<String>,
pub mode: Option<String>,
pub ownership: Option<String>,
pub relevant_aces: Option<Vec<AuthAccessAccessItemShareSharePermissionsShareRelevantAce>>,
pub relevant_mode: Option<String>,
pub sticky: Option<String>,
}
Fields§
§dacl: Option<String>
Returns a status message if the Null ACL is set.
delete_child: Option<String>
Returns a status message if the parent directoryhas the delete_child property set for the user.If the delete_child property is set for a user,that user is able to delete the file.the delete_child for the user.
expected: Option<String>
Specifies the Access Control Entry (ACE) for the user.
mode: Option<String>
Specifies the mode bits on the file.
ownership: Option<String>
Returns a status message if the user owns the file.
relevant_aces: Option<Vec<AuthAccessAccessItemShareSharePermissionsShareRelevantAce>>
Specifies a list of the relevant Access Control Entrieswith respect to the user in the share.
relevant_mode: Option<String>
Specifies the mode bits that are related to the user.
sticky: Option<String>
Returns a status message if the user owns the file.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AuthAccessAccessItemFileFilePermissions
impl<'de> Deserialize<'de> for AuthAccessAccessItemFileFilePermissions
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AuthAccessAccessItemFileFilePermissions
impl RefUnwindSafe for AuthAccessAccessItemFileFilePermissions
impl Send for AuthAccessAccessItemFileFilePermissions
impl Sync for AuthAccessAccessItemFileFilePermissions
impl Unpin for AuthAccessAccessItemFileFilePermissions
impl UnwindSafe for AuthAccessAccessItemFileFilePermissions
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more