pub enum TableHeading {
Title(String),
Empty(String),
}
Variants§
Implementations§
Source§impl TableHeading
impl TableHeading
pub fn title(title: impl Into<String>) -> TableHeading
pub fn empty(sr_only_text: impl Into<String>) -> TableHeading
Auto Trait Implementations§
impl Freeze for TableHeading
impl RefUnwindSafe for TableHeading
impl Send for TableHeading
impl Sync for TableHeading
impl Unpin for TableHeading
impl UnwindSafe for TableHeading
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