pub struct Project {
pub id: i64,
pub name: String,
pub weight: i64,
pub viewer: Option<String>,
pub archived: bool,
}Fields§
§id: i64§name: String§weight: i64§viewer: Option<String>The voro.toml viewer this project’s local diffs open in (DESIGN.md
§8/§11a): a [viewers.<name>] name, or None for the default viewer.
The review keys are static — g/pr are always the GitHub PR flow,
o/open always a local viewer — so this picks no medium, only the
viewer o/open resolve for this project.
archived: boolRetired (DESIGN.md §5): the project and all its tasks leave the cockpit — queue, stats, running strip — until unarchived. Tasks freeze in whatever state they hold; only the projects screen still shows the project, tagged, so it can be found and unarchived.
Trait Implementations§
impl Eq for Project
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.