#[non_exhaustive]
pub struct SharedFolderMetadataBase { pub access_type: AccessLevel, pub is_inside_team_folder: bool, pub is_team_folder: bool, 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>, }
This is supported on crate feature dbx_sharing only.
Expand description

Properties of the shared folder.

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.
access_type: AccessLevel

The current user’s access level for this shared folder.

is_inside_team_folder: bool

Whether this folder is inside of a team folder.

is_team_folder: bool

Whether this folder is a team 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.

parent_shared_folder_id: Option<SharedFolderId>

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.

Implementations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.