pub struct Project {
pub gid: String,
pub name: String,
pub notes: Option<String>,
pub color: Option<String>,
pub archived: Option<bool>,
pub workspace: Option<Workspace>,
pub team: Option<Team>,
pub created_at: Option<String>,
pub modified_at: Option<String>,
pub permalink_url: Option<String>,
}Expand description
Project.
Fields§
§gid: String§name: String§notes: Option<String>§color: Option<String>§archived: Option<bool>§workspace: Option<Workspace>§team: Option<Team>§created_at: Option<String>§modified_at: Option<String>§permalink_url: Option<String>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 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