pub struct PageHeaderProps {
pub title: String,
pub breadcrumb: Vec<BreadcrumbItem>,
pub actions: Vec<ComponentNode>,
}Expand description
Props for PageHeader component – page title with optional breadcrumb and action buttons.
Fields§
§title: String§actions: Vec<ComponentNode>Trait Implementations§
Source§impl Clone for PageHeaderProps
impl Clone for PageHeaderProps
Source§fn clone(&self) -> PageHeaderProps
fn clone(&self) -> PageHeaderProps
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 PageHeaderProps
impl Debug for PageHeaderProps
Source§impl<'de> Deserialize<'de> for PageHeaderProps
impl<'de> Deserialize<'de> for PageHeaderProps
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 PageHeaderProps
impl PartialEq for PageHeaderProps
Source§impl Serialize for PageHeaderProps
impl Serialize for PageHeaderProps
impl StructuralPartialEq for PageHeaderProps
Auto Trait Implementations§
impl Freeze for PageHeaderProps
impl RefUnwindSafe for PageHeaderProps
impl Send for PageHeaderProps
impl Sync for PageHeaderProps
impl Unpin for PageHeaderProps
impl UnsafeUnpin for PageHeaderProps
impl UnwindSafe for PageHeaderProps
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