Struct biji_ui::components::menubar::menu::MenuContentProps
source · pub struct MenuContentProps {
pub children: ChildrenFn,
pub class: String,
pub show_class: String,
pub hide_class: String,
pub hide_delay: Duration,
}Expand description
Props for the MenuContent component.
§Required Props
- children:
ChildrenFn
§Optional Props
- class:
impl Into<String>- Optional CSS class to apply to both show and hide classes
- show_class:
impl Into<String>- Optional CSS class to apply if
when == true
- Optional CSS class to apply if
- hide_class:
impl Into<String>- Optional CSS class to apply if
when == false
- Optional CSS class to apply if
- hide_delay:
Duration- The timeout after which the component will be unmounted if
when == false
- The timeout after which the component will be unmounted if
Fields§
§children: ChildrenFn§class: StringOptional CSS class to apply to both show and hide classes
show_class: StringOptional CSS class to apply if when == true
hide_class: StringOptional CSS class to apply if when == false
hide_delay: DurationThe timeout after which the component will be unmounted if when == false
Implementations§
source§impl MenuContentProps
impl MenuContentProps
sourcepub fn builder() -> MenuContentPropsBuilder<((), (), (), (), ())>
pub fn builder() -> MenuContentPropsBuilder<((), (), (), (), ())>
Create a builder for building MenuContentProps.
On the builder, call .children(...), .class(...)(optional), .show_class(...)(optional), .hide_class(...)(optional), .hide_delay(...)(optional) to set the values of the fields.
Finally, call .build() to create the instance of MenuContentProps.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MenuContentProps
impl !RefUnwindSafe for MenuContentProps
impl !Send for MenuContentProps
impl !Sync for MenuContentProps
impl Unpin for MenuContentProps
impl !UnwindSafe for MenuContentProps
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> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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