pub struct KanbanColumnProps {
pub id: String,
pub title: String,
pub count: u32,
pub children: Vec<ComponentNode>,
}Expand description
Props for a single column in a KanbanBoard.
Fields§
§id: String§title: String§count: u32§children: Vec<ComponentNode>Trait Implementations§
Source§impl Clone for KanbanColumnProps
impl Clone for KanbanColumnProps
Source§fn clone(&self) -> KanbanColumnProps
fn clone(&self) -> KanbanColumnProps
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for KanbanColumnProps
impl Debug for KanbanColumnProps
Source§impl<'de> Deserialize<'de> for KanbanColumnProps
impl<'de> Deserialize<'de> for KanbanColumnProps
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
Source§impl PartialEq for KanbanColumnProps
impl PartialEq for KanbanColumnProps
Source§impl Serialize for KanbanColumnProps
impl Serialize for KanbanColumnProps
impl StructuralPartialEq for KanbanColumnProps
Auto Trait Implementations§
impl Freeze for KanbanColumnProps
impl RefUnwindSafe for KanbanColumnProps
impl Send for KanbanColumnProps
impl Sync for KanbanColumnProps
impl Unpin for KanbanColumnProps
impl UnsafeUnpin for KanbanColumnProps
impl UnwindSafe for KanbanColumnProps
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