pub struct SidebarTabs<const TLENGTH: usize = 0, const BLENGTH: usize = 0> {
pub top: Option<[(View, View); TLENGTH]>,
pub bottom: Option<[(View, View); BLENGTH]>,
}
Fields§
§top: Option<[(View, View); TLENGTH]>
§bottom: Option<[(View, View); BLENGTH]>
Auto Trait Implementations§
impl<const TLENGTH: usize, const BLENGTH: usize> Freeze for SidebarTabs<TLENGTH, BLENGTH>
impl<const TLENGTH: usize = 0, const BLENGTH: usize = 0> !RefUnwindSafe for SidebarTabs<TLENGTH, BLENGTH>
impl<const TLENGTH: usize = 0, const BLENGTH: usize = 0> !Send for SidebarTabs<TLENGTH, BLENGTH>
impl<const TLENGTH: usize = 0, const BLENGTH: usize = 0> !Sync for SidebarTabs<TLENGTH, BLENGTH>
impl<const TLENGTH: usize, const BLENGTH: usize> Unpin for SidebarTabs<TLENGTH, BLENGTH>
impl<const TLENGTH: usize = 0, const BLENGTH: usize = 0> !UnwindSafe for SidebarTabs<TLENGTH, BLENGTH>
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