#[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_display: Option<String>,
pub path_lower: Option<String>,
pub parent_folder_name: Option<String>,
}
sync_routes
and dbx_sharing
only.Expand description
Properties of 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: 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.
The ID of the parent shared folder. This field is present only if the folder is contained within another shared folder.
path_display: Option<String>
The full path of this shared folder. Absent for unmounted folders.
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§
pub fn new( access_type: AccessLevel, is_inside_team_folder: bool, is_team_folder: bool, ) -> 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_display(self, value: String) -> Self
pub fn with_path_lower(self, value: String) -> Self
pub fn with_parent_folder_name(self, value: String) -> Self
Trait Implementations§
Source§fn clone(&self) -> SharedFolderMetadataBase
fn clone(&self) -> SharedFolderMetadataBase
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Source§fn from(subtype: SharedFolderMetadata) -> Self
fn from(subtype: SharedFolderMetadata) -> Self
Auto Trait Implementations§
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.