pub struct CreateProjectArgs {
pub name: String,
pub color: Option<String>,
pub parent_id: Option<String>,
pub is_favorite: Option<bool>,
pub view_style: Option<String>,
}
Expand description
Project creation arguments
Fields§
§name: String
§color: Option<String>
§parent_id: Option<String>
§is_favorite: Option<bool>
§view_style: Option<String>
Trait Implementations§
Source§impl Debug for CreateProjectArgs
impl Debug for CreateProjectArgs
Source§impl Default for CreateProjectArgs
impl Default for CreateProjectArgs
Source§fn default() -> CreateProjectArgs
fn default() -> CreateProjectArgs
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CreateProjectArgs
impl RefUnwindSafe for CreateProjectArgs
impl Send for CreateProjectArgs
impl Sync for CreateProjectArgs
impl Unpin for CreateProjectArgs
impl UnwindSafe for CreateProjectArgs
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