pub struct ListViewBuilder { /* private fields */ }
Implementations§
Source§impl ListViewBuilder
impl ListViewBuilder
pub fn parent<C: Into<ControlHandle>>(self, p: C) -> ListViewBuilder
pub fn flags(self, flags: ListViewFlags) -> ListViewBuilder
pub fn ex_flags(self, flags: ListViewExFlags) -> ListViewBuilder
pub fn ex_window_flags(self, flags: u32) -> ListViewBuilder
pub fn size(self, size: (i32, i32)) -> ListViewBuilder
pub fn position(self, position: (i32, i32)) -> ListViewBuilder
pub fn double_buffer(self, buffer: bool) -> ListViewBuilder
pub fn background_color(self, color: [u8; 3]) -> ListViewBuilder
pub fn text_color(self, color: [u8; 3]) -> ListViewBuilder
pub fn item_count(self, count: u32) -> ListViewBuilder
pub fn list_style(self, style: ListViewStyle) -> ListViewBuilder
pub fn focus(self, focus: bool) -> ListViewBuilder
pub fn build(self, out: &mut ListView) -> Result<(), NwgError>
Auto Trait Implementations§
impl Freeze for ListViewBuilder
impl RefUnwindSafe for ListViewBuilder
impl !Send for ListViewBuilder
impl !Sync for ListViewBuilder
impl Unpin for ListViewBuilder
impl UnwindSafe for ListViewBuilder
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