pub struct UpdateProjectArgs {
pub name: Option<String>,
pub color: Option<String>,
pub is_favorite: Option<bool>,
pub view_style: Option<String>,
}
Expand description
Project update arguments
Fields§
§name: Option<String>
§color: Option<String>
§is_favorite: Option<bool>
§view_style: Option<String>
Implementations§
Source§impl UpdateProjectArgs
impl UpdateProjectArgs
Sourcepub fn has_updates(&self) -> bool
pub fn has_updates(&self) -> bool
Check if any fields are set for updating
Trait Implementations§
Source§impl Debug for UpdateProjectArgs
impl Debug for UpdateProjectArgs
Source§impl Default for UpdateProjectArgs
impl Default for UpdateProjectArgs
Source§fn default() -> UpdateProjectArgs
fn default() -> UpdateProjectArgs
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UpdateProjectArgs
impl RefUnwindSafe for UpdateProjectArgs
impl Send for UpdateProjectArgs
impl Sync for UpdateProjectArgs
impl Unpin for UpdateProjectArgs
impl UnwindSafe for UpdateProjectArgs
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