pub struct Project {
pub name: String,
pub time_logs: Vec<TimeLog>,
pub total_spent_time: Duration,
}Expand description
The queried GitLab repository.
Fields§
§name: StringThe name of the repository.
time_logs: Vec<TimeLog>The time logs of the repository.
total_spent_time: DurationTotal Time spent on the project
Implementations§
Trait 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 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