pub struct AppShell<'a, Msg> { /* private fields */ }Expand description
Builds the common application frame: a header on top, a sidebar on the left, the body beside it and a footer at the bottom.
The parts are separated by surface colour only. Below collapse_below columns the sidebar
is hidden to give the body room; while sidebar_open is true it is drawn over the body as a
layer instead. Style keys: shell-header, shell-sidebar, shell-body, shell-footer
(bg).
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a, Msg> !RefUnwindSafe for AppShell<'a, Msg>
impl<'a, Msg> !Send for AppShell<'a, Msg>
impl<'a, Msg> !Sync for AppShell<'a, Msg>
impl<'a, Msg> !UnwindSafe for AppShell<'a, Msg>
impl<'a, Msg> Freeze for AppShell<'a, Msg>
impl<'a, Msg> Unpin for AppShell<'a, Msg>
impl<'a, Msg> UnsafeUnpin for AppShell<'a, Msg>
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