Struct dropbox_sdk::paper::PaperFolderCreateArg [−][src]
#[non_exhaustive]pub struct PaperFolderCreateArg { pub name: String, pub parent_folder_id: Option<String>, pub is_team_folder: Option<bool>, }
dbx_paper only.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.name: StringThe name of the new Paper folder.
parent_folder_id: Option<String>The encrypted Paper folder Id where the new Paper folder should be created. The API user has to have write access to this folder or error is thrown. If not supplied, the new folder will be created at top level.
is_team_folder: Option<bool>Whether the folder to be created should be a team folder. This value will be ignored if parent_folder_id is supplied, as the new folder will inherit the type (private or team folder) from its parent. We will by default create a top-level private folder if both parent_folder_id and is_team_folder are not supplied.
Implementations
Trait Implementations
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 !=.
Auto Trait Implementations
impl RefUnwindSafe for PaperFolderCreateArgimpl Send for PaperFolderCreateArgimpl Sync for PaperFolderCreateArgimpl Unpin for PaperFolderCreateArgimpl UnwindSafe for PaperFolderCreateArgBlanket Implementations
Mutably borrows from an owned value. Read more