pub struct CellBuilder<'l, G: GroupExt + Clone, F: Borrow<WrapperFactory>> { /* private fields */ }
Implementations§
Source§impl<'l, G: GroupExt + Clone, F: Borrow<WrapperFactory>> CellBuilder<'l, G, F>
impl<'l, G: GroupExt + Clone, F: Borrow<WrapperFactory>> CellBuilder<'l, G, F>
pub fn with_left_padding(self, padding: i32) -> Self
pub fn with_top_padding(self, padding: i32) -> Self
pub fn with_right_padding(self, padding: i32) -> Self
pub fn with_bottom_padding(self, padding: i32) -> Self
pub fn with_padding(self, left: i32, top: i32, right: i32, bottom: i32) -> Self
pub fn with_horz_align(self, align: CellAlign) -> Self
pub fn with_vert_align(self, align: CellAlign) -> Self
pub fn skip(self)
pub fn add<E: LayoutElement + 'static>(self, element: E)
pub fn wrap<W: IntoWidget + 'static>(self, widget: W) -> W
Auto Trait Implementations§
impl<'l, G, F> Freeze for CellBuilder<'l, G, F>
impl<'l, G, F> !RefUnwindSafe for CellBuilder<'l, G, F>
impl<'l, G, F> !Send for CellBuilder<'l, G, F>
impl<'l, G, F> !Sync for CellBuilder<'l, G, F>
impl<'l, G, F> Unpin for CellBuilder<'l, G, F>
impl<'l, G, F> !UnwindSafe for CellBuilder<'l, G, F>
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