#[non_exhaustive]pub struct TeamFolderIdArg {
pub team_folder_id: SharedFolderId,
}
Available on crate features
async_routes
and dbx_team
only.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.team_folder_id: SharedFolderId
The ID of the team folder.
Implementations§
Source§impl TeamFolderIdArg
impl TeamFolderIdArg
pub fn new(team_folder_id: SharedFolderId) -> Self
Trait Implementations§
Source§impl Clone for TeamFolderIdArg
impl Clone for TeamFolderIdArg
Source§fn clone(&self) -> TeamFolderIdArg
fn clone(&self) -> TeamFolderIdArg
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TeamFolderIdArg
impl Debug for TeamFolderIdArg
Source§impl<'de> Deserialize<'de> for TeamFolderIdArg
impl<'de> Deserialize<'de> for TeamFolderIdArg
Source§fn 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
Source§impl From<TeamFolderArchiveArg> for TeamFolderIdArg
impl From<TeamFolderArchiveArg> for TeamFolderIdArg
Source§fn from(subtype: TeamFolderArchiveArg) -> Self
fn from(subtype: TeamFolderArchiveArg) -> Self
Converts to this type from the input type.
Source§impl From<TeamFolderRenameArg> for TeamFolderIdArg
impl From<TeamFolderRenameArg> for TeamFolderIdArg
Source§fn from(subtype: TeamFolderRenameArg) -> Self
fn from(subtype: TeamFolderRenameArg) -> Self
Converts to this type from the input type.
Source§impl From<TeamFolderUpdateSyncSettingsArg> for TeamFolderIdArg
impl From<TeamFolderUpdateSyncSettingsArg> for TeamFolderIdArg
Source§fn from(subtype: TeamFolderUpdateSyncSettingsArg) -> Self
fn from(subtype: TeamFolderUpdateSyncSettingsArg) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TeamFolderIdArg
impl PartialEq for TeamFolderIdArg
Source§impl Serialize for TeamFolderIdArg
impl Serialize for TeamFolderIdArg
impl Eq for TeamFolderIdArg
impl StructuralPartialEq for TeamFolderIdArg
Auto Trait Implementations§
impl Freeze for TeamFolderIdArg
impl RefUnwindSafe for TeamFolderIdArg
impl Send for TeamFolderIdArg
impl Sync for TeamFolderIdArg
impl Unpin for TeamFolderIdArg
impl UnwindSafe for TeamFolderIdArg
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> 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
Compare self to
key
and return true
if they are equal.