pub struct Roadmap {Show 14 fields
pub id: Option<String>,
pub created_at: Option<DateTime<Utc>>,
pub updated_at: Option<DateTime<Utc>>,
pub archived_at: Option<DateTime<Utc>>,
pub name: Option<String>,
pub description: Option<String>,
pub organization: Option<Box<Organization>>,
pub creator: Option<Box<User>>,
pub owner: Option<Box<User>>,
pub slug_id: Option<String>,
pub sort_order: Option<f64>,
pub color: Option<String>,
pub projects: Option<Box<ProjectConnection>>,
pub url: Option<String>,
}Expand description
Deprecated A roadmap for projects.
Fields§
§id: Option<String>The unique identifier of the entity.
created_at: Option<DateTime<Utc>>The time at which the entity was created.
updated_at: Option<DateTime<Utc>>The last time at which the entity was meaningfully updated. This is the same as the creation time if the entity hasn’t been updated after creation.
archived_at: Option<DateTime<Utc>>The time at which the entity was archived. Null if the entity has not been archived.
name: Option<String>The name of the roadmap.
description: Option<String>The description of the roadmap.
organization: Option<Box<Organization>>The organization of the roadmap.
creator: Option<Box<User>>The user who created the roadmap.
owner: Option<Box<User>>The user who owns the roadmap.
slug_id: Option<String>The roadmap’s unique URL slug.
sort_order: Option<f64>The sort order of the roadmap within the organization.
color: Option<String>The roadmap’s color.
projects: Option<Box<ProjectConnection>>Projects associated with the roadmap.
url: Option<String>The canonical url for the roadmap.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Roadmap
impl<'de> Deserialize<'de> for Roadmap
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
Source§impl GraphQLFields for Roadmap
impl GraphQLFields for Roadmap
Auto Trait Implementations§
impl Freeze for Roadmap
impl RefUnwindSafe for Roadmap
impl Send for Roadmap
impl Sync for Roadmap
impl Unpin for Roadmap
impl UnwindSafe for Roadmap
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