Struct dropbox_sdk::sharing::SharedFolderMetadata
source · [−]#[non_exhaustive]pub struct SharedFolderMetadata {Show 16 fields
pub access_type: AccessLevel,
pub is_inside_team_folder: bool,
pub is_team_folder: bool,
pub name: String,
pub policy: FolderPolicy,
pub preview_url: String,
pub shared_folder_id: SharedFolderId,
pub time_invited: DropboxTimestamp,
pub owner_display_names: Option<Vec<String>>,
pub owner_team: Option<Team>,
pub parent_shared_folder_id: Option<SharedFolderId>,
pub path_lower: Option<String>,
pub parent_folder_name: Option<String>,
pub link_metadata: Option<SharedContentLinkMetadata>,
pub permissions: Option<Vec<FolderPermission>>,
pub access_inheritance: AccessInheritance,
}dbx_sharing only.Expand description
The metadata which includes basic information about the shared folder.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.access_type: AccessLevelThe current user’s access level for this shared folder.
is_inside_team_folder: boolWhether this folder is inside of a team folder.
is_team_folder: boolWhether this folder is a team folder.
name: StringThe name of the this shared folder.
policy: FolderPolicyPolicies governing this shared folder.
preview_url: StringURL for displaying a web preview of the shared folder.
The ID of the shared folder.
time_invited: DropboxTimestampTimestamp indicating when the current user was invited to this shared folder.
owner_display_names: Option<Vec<String>>The display names of the users that own the folder. If the folder is part of a team folder, the display names of the team admins are also included. Absent if the owner display names cannot be fetched.
owner_team: Option<Team>The team that owns the folder. This field is not present if the folder is not owned by a team.
The ID of the parent shared folder. This field is present only if the folder is contained within another shared folder.
path_lower: Option<String>The lower-cased full path of this shared folder. Absent for unmounted folders.
parent_folder_name: Option<String>Display name for the parent folder.
link_metadata: Option<SharedContentLinkMetadata>The metadata of the shared content link to this shared folder. Absent if there is no link on the folder. This is for an unreleased feature so it may not be returned yet.
permissions: Option<Vec<FolderPermission>>Actions the current user may perform on the folder and its contents. The set of permissions corresponds to the FolderActions in the request.
access_inheritance: AccessInheritanceWhether the folder inherits its members from its parent.
Implementations
sourceimpl SharedFolderMetadata
impl SharedFolderMetadata
pub fn new(
access_type: AccessLevel,
is_inside_team_folder: bool,
is_team_folder: bool,
name: String,
policy: FolderPolicy,
preview_url: String,
shared_folder_id: SharedFolderId,
time_invited: DropboxTimestamp
) -> Self
pub fn with_owner_display_names(self, value: Vec<String>) -> Self
pub fn with_owner_team(self, value: Team) -> Self
pub fn with_path_lower(self, value: String) -> Self
pub fn with_parent_folder_name(self, value: String) -> Self
pub fn with_link_metadata(self, value: SharedContentLinkMetadata) -> Self
pub fn with_permissions(self, value: Vec<FolderPermission>) -> Self
pub fn with_access_inheritance(self, value: AccessInheritance) -> Self
Trait Implementations
sourceimpl Clone for SharedFolderMetadata
impl Clone for SharedFolderMetadata
sourcefn clone(&self) -> SharedFolderMetadata
fn clone(&self) -> SharedFolderMetadata
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 SharedFolderMetadata
impl Debug for SharedFolderMetadata
sourceimpl<'de> Deserialize<'de> for SharedFolderMetadata
impl<'de> Deserialize<'de> for SharedFolderMetadata
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
sourcefn eq(&self, other: &SharedFolderMetadata) -> bool
fn eq(&self, other: &SharedFolderMetadata) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &SharedFolderMetadata) -> bool
fn ne(&self, other: &SharedFolderMetadata) -> bool
This method tests for !=.
sourceimpl Serialize for SharedFolderMetadata
impl Serialize for SharedFolderMetadata
impl Eq for SharedFolderMetadata
impl StructuralEq for SharedFolderMetadata
impl StructuralPartialEq for SharedFolderMetadata
Auto Trait Implementations
impl RefUnwindSafe for SharedFolderMetadata
impl Send for SharedFolderMetadata
impl Sync for SharedFolderMetadata
impl Unpin for SharedFolderMetadata
impl UnwindSafe for SharedFolderMetadata
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