pub struct Project {
pub id: i64,
pub name: String,
pub description: Option<String>,
pub path: Option<String>,
pub created_at: String,
pub updated_at: String,
}Fields§
§id: i64§name: String§description: Option<String>§path: Option<String>§created_at: String§updated_at: StringTrait Implementations§
impl StructuralPartialEq for Project
Auto Trait Implementations§
impl Freeze for Project
impl RefUnwindSafe for Project
impl Send for Project
impl Sync for Project
impl Unpin for Project
impl UnsafeUnpin for Project
impl UnwindSafe for Project
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