pub struct UpdateFolderParams {
pub name: Option<String>,
pub parent_folder_id: Option<u64>,
pub locked: Option<bool>,
pub hidden: Option<bool>,
pub position: Option<u64>,
}Expand description
Parameters for updating a Canvas folder.
Fields§
§name: Option<String>§parent_folder_id: Option<u64>§locked: Option<bool>§position: Option<u64>Trait Implementations§
Source§impl Clone for UpdateFolderParams
impl Clone for UpdateFolderParams
Source§fn clone(&self) -> UpdateFolderParams
fn clone(&self) -> UpdateFolderParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UpdateFolderParams
impl Debug for UpdateFolderParams
Source§impl Default for UpdateFolderParams
impl Default for UpdateFolderParams
Source§fn default() -> UpdateFolderParams
fn default() -> UpdateFolderParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UpdateFolderParams
impl RefUnwindSafe for UpdateFolderParams
impl Send for UpdateFolderParams
impl Sync for UpdateFolderParams
impl Unpin for UpdateFolderParams
impl UnsafeUnpin for UpdateFolderParams
impl UnwindSafe for UpdateFolderParams
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