pub struct ColumnViewCellBuilder { /* private fields */ }Expand description
A builder-pattern type to construct ColumnViewCell objects.
Implementations§
Source§impl ColumnViewCellBuilder
impl ColumnViewCellBuilder
pub fn child(self, child: &impl IsA<Widget>) -> Self
pub fn focusable(self, focusable: bool) -> Self
pub fn accessible_description( self, accessible_description: impl Into<GString>, ) -> Self
pub fn accessible_label(self, accessible_label: impl Into<GString>) -> Self
pub fn activatable(self, activatable: bool) -> Self
pub fn selectable(self, selectable: bool) -> Self
Sourcepub fn build(self) -> ColumnViewCell
pub fn build(self) -> ColumnViewCell
Build the ColumnViewCell.
Auto Trait Implementations§
impl Freeze for ColumnViewCellBuilder
impl RefUnwindSafe for ColumnViewCellBuilder
impl !Send for ColumnViewCellBuilder
impl !Sync for ColumnViewCellBuilder
impl Unpin for ColumnViewCellBuilder
impl UnwindSafe for ColumnViewCellBuilder
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