pub struct Project {
pub created_at: OffsetDateTime,
pub name: String,
pub namespace: Namespace,
pub stats: ProjectStats,
pub category: Category,
pub last_updated: OffsetDateTime,
pub visibility: Visibility,
pub avatar_url: String,
pub description: String,
pub user_actions: UserActions,
pub settings: ProjectSettings,
}Fields§
§created_at: OffsetDateTime§name: StringThe unique name of the project
namespace: NamespaceThe namespace of the project
stats: ProjectStatsStats of the project
category: CategoryThe category of the project
last_updated: OffsetDateTimeThe last time the project was updated
visibility: VisibilityThe visibility of a project or version
avatar_url: StringThe url to the project’s icon
description: StringThe short description of the project
user_actions: UserActionsInformation about your interactions with the project
settings: ProjectSettingsThe settings of the project
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