pub struct TabsHeader<R: Reactive<K>, K: Clone> {
pub current_tab: R,
pub tabs: Vec<Tab<K>>,
pub params: TabsParams,
}Expand description
Nagivation bar for TabsContent.
Fields§
§current_tab: R§tabs: Vec<Tab<K>>§params: TabsParamsImplementations§
Source§impl<R, K> TabsHeader<R, K>
impl<R, K> TabsHeader<R, K>
pub fn into_component(self) -> Self
pub fn mount(self) -> DomNode
Auto Trait Implementations§
impl<R, K> Freeze for TabsHeader<R, K>where
R: Freeze,
impl<R, K> !RefUnwindSafe for TabsHeader<R, K>
impl<R, K> !Send for TabsHeader<R, K>
impl<R, K> !Sync for TabsHeader<R, K>
impl<R, K> Unpin for TabsHeader<R, K>
impl<R, K> !UnwindSafe for TabsHeader<R, K>
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more