pub struct Project {
pub archived_at: Option<i32>,
pub created_at: i32,
pub id: String,
pub name: String,
pub object: String,
pub status: String,
}
Fields§
§archived_at: Option<i32>
The Unix timestamp (in seconds) of when the project was archived or null
.
created_at: i32
The Unix timestamp (in seconds) of when the project was created.
id: String
The identifier, which can be referenced in API endpoints
name: String
The name of the project. This appears in reporting.
object: String
The object type, which is always organization.project
status: String
active
or archived
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Project
impl<'de> Deserialize<'de> for Project
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
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