pub struct ProjectInput {
pub name: String,
pub description: String,
pub is_public: bool,
pub is_collaborative: bool,
pub is_archived: bool,
}
Fields§
§name: String
§description: String
§is_public: bool
§is_collaborative: bool
§is_archived: bool
Trait Implementations§
Source§impl Debug for ProjectInput
impl Debug for ProjectInput
Auto Trait Implementations§
impl Freeze for ProjectInput
impl RefUnwindSafe for ProjectInput
impl Send for ProjectInput
impl Sync for ProjectInput
impl Unpin for ProjectInput
impl UnwindSafe for ProjectInput
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