pub struct KanbanBoardProps {
pub columns: Vec<KanbanColumnProps>,
pub mobile_default_column: Option<String>,
}Expand description
Props for KanbanBoard component — horizontal scrollable columns on desktop, tab-based on mobile.
Fields§
§columns: Vec<KanbanColumnProps>§mobile_default_column: Option<String>Trait Implementations§
Source§impl Clone for KanbanBoardProps
impl Clone for KanbanBoardProps
Source§fn clone(&self) -> KanbanBoardProps
fn clone(&self) -> KanbanBoardProps
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 KanbanBoardProps
impl Debug for KanbanBoardProps
Source§impl<'de> Deserialize<'de> for KanbanBoardProps
impl<'de> Deserialize<'de> for KanbanBoardProps
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 KanbanBoardProps
impl PartialEq for KanbanBoardProps
Source§impl Serialize for KanbanBoardProps
impl Serialize for KanbanBoardProps
impl StructuralPartialEq for KanbanBoardProps
Auto Trait Implementations§
impl Freeze for KanbanBoardProps
impl RefUnwindSafe for KanbanBoardProps
impl Send for KanbanBoardProps
impl Sync for KanbanBoardProps
impl Unpin for KanbanBoardProps
impl UnsafeUnpin for KanbanBoardProps
impl UnwindSafe for KanbanBoardProps
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