pub struct Project {
pub id: String,
pub object: String,
pub name: String,
pub created_at: i64,
pub archived_at: Option<i64>,
pub status: String,
}Expand description
Represents an individual project.
Fields§
§id: StringThe identifier, which can be referenced in API endpoints
object: StringThe object type, which is always organization.project
name: StringThe name of the project.
created_at: i64The Unix timestamp (in seconds) of when the project was created.
archived_at: Option<i64>The Unix timestamp (in seconds) of when the project was archived or
null.
status: Stringactive or archived
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 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