pub struct TabsParams {
pub header_css: Css,
pub header_item_css: Css,
pub header_item_add_css: Css,
pub header_active_item_add_css: Css,
pub content_css: Css,
pub container_css: Css,
}Fields§
§header_css: Css§header_item_css: Css§header_item_add_css: Css§header_active_item_add_css: Css§content_css: Css§container_css: CssTrait Implementations§
Source§impl Clone for TabsParams
impl Clone for TabsParams
Source§fn clone(&self) -> TabsParams
fn clone(&self) -> TabsParams
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 moreAuto Trait Implementations§
impl Freeze for TabsParams
impl RefUnwindSafe for TabsParams
impl Send for TabsParams
impl Sync for TabsParams
impl Unpin for TabsParams
impl UnwindSafe for TabsParams
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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