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