pub struct Project {
pub id: String,
pub owner_id: String,
pub name: String,
pub description: String,
pub wip_limit_default: Option<i64>,
pub team_id: Option<String>,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
}Fields§
§id: String§owner_id: String§name: String§description: String§wip_limit_default: Option<i64>Optional project-level default WIP limit (count of
in-progress issues). Overrides
personal_metrics::DEFAULT_WIP_LIMIT for users who have
not set their own User::wip_limit.
team_id: Option<String>Optional team this project belongs to. None is a
personal project (the default; see migration 0011 for
the team feature). Members of the linked team get access
to the project’s issues per their team role.
created_at: DateTime<Utc>§updated_at: DateTime<Utc>Trait Implementations§
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