pub struct BoardRow {
pub id: String,
pub state: String,
pub priority: String,
pub title: String,
pub project: String,
pub extra: String,
}Expand description
One displayed row. Every pane maps onto this shape so keys share a path.
Fields§
§id: StringIssue id shown in the first column.
state: StringOrg TODO state (TODO, STARTED, …).
priority: StringPriority letter (A, B, or C).
title: StringHeading title.
project: StringProject name.
extra: StringPane-specific suffix: holder, agenda date, or search snippet.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BoardRow
impl RefUnwindSafe for BoardRow
impl Send for BoardRow
impl Sync for BoardRow
impl Unpin for BoardRow
impl UnsafeUnpin for BoardRow
impl UnwindSafe for BoardRow
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more