pub struct BoardSection {
pub name: String,
pub next_card_id: u32,
pub policies: Policies,
pub sync_branch: Option<String>,
pub nerd_font: bool,
pub created_at: Option<String>,
}Fields§
§name: String§next_card_id: u32§policies: Policies§sync_branch: Option<String>Git branch to sync with. None = no sync.
nerd_font: boolUse Nerd Font glyphs instead of ASCII icons.
created_at: Option<String>When the board was created (ISO-8601 string).
Trait Implementations§
Source§impl Debug for BoardSection
impl Debug for BoardSection
Source§impl<'de> Deserialize<'de> for BoardSection
impl<'de> Deserialize<'de> for BoardSection
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 BoardSection
impl RefUnwindSafe for BoardSection
impl Send for BoardSection
impl Sync for BoardSection
impl Unpin for BoardSection
impl UnsafeUnpin for BoardSection
impl UnwindSafe for BoardSection
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