pub struct Board {
pub archived_at: Option<String>,
pub emoji: Option<String>,
pub id: String,
pub last_viewed_at: Option<String>,
pub name: String,
pub project_completed_project_column_id: Option<String>,
pub task_completed_project_column_id: Option<String>,
}
Fields§
§archived_at: Option<String>
§emoji: Option<String>
§id: String
§last_viewed_at: Option<String>
§name: String
§project_completed_project_column_id: Option<String>
§task_completed_project_column_id: Option<String>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Board
impl<'de> Deserialize<'de> for Board
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 Board
impl RefUnwindSafe for Board
impl Send for Board
impl Sync for Board
impl Unpin for Board
impl UnwindSafe for Board
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