pub struct Board {
pub version: u32,
pub id: String,
pub name: String,
pub description: String,
pub lists: Vec<List>,
pub next_ticket: u64,
pub next_thread: u64,
pub created: DateTime<Utc>,
pub updated: DateTime<Utc>,
}Expand description
The board - the top-level object of a project. Holds ordered Lists whose
cards reference ticket IDs. Ticket content lives in separate files under
tickets/, so moving a card and editing a ticket never touch the same file.
Fields§
§version: u32On-disk format version.
id: StringStable unique board ID (UUID v4).
name: StringHuman-readable board name.
description: StringOptional longer description (Markdown allowed).
lists: Vec<List>Ordered lists (columns) of the board.
next_ticket: u64Next ticket counter; T-<next_ticket> is the next ID to allocate.
next_thread: u64Next forum-thread counter; F-<next_thread> is the next thread ID.
created: DateTime<Utc>When the board was created.
updated: DateTime<Utc>When the board was last modified.
Implementations§
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
impl StructuralPartialEq for Board
Auto Trait Implementations§
impl Freeze for Board
impl RefUnwindSafe for Board
impl Send for Board
impl Sync for Board
impl Unpin for Board
impl UnsafeUnpin 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