Struct winsafe::gui::spec::ListViewColumn

source ·
pub struct ListViewColumn<'a, T: 'static = ()> { /* private fields */ }
Available on crate feature gui only.
Expand description

A single column of a ListView control.

Note: Each object keeps the zero-based index of a column. If new columns are added/removed from the list view control, the object may then point to a different item.

You cannot directly instantiate this object, it is created internally by the control.

Implementations§

source§

impl<'a, T> ListViewColumn<'a, T>

source

pub fn set_title(&self, text: &str)

Sets the title of the column by sending an lvm::SetColumn message.

source

pub fn set_width(&self, width: u32)

Sets the width of the column by sending an lvm::SetColumnWidth message.

Width will be adjusted to match current system DPI.

source

pub fn set_width_to_fill(&self)

Sets the width of the column by sending an lvm::SetColumnWidth message. The width will be calculated to fill the remaining space.

source

pub fn title(&self) -> String

Retrieves the title of the column by sending an lvm::GetColumn message.

source

pub fn width(&self) -> u32

Retrieves the width of the column by sending an lvm::GetColumnWidth message.

Trait Implementations§

source§

impl<'a, T: Clone + 'static> Clone for ListViewColumn<'a, T>

source§

fn clone(&self) -> ListViewColumn<'a, T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a, T: Copy + 'static> Copy for ListViewColumn<'a, T>

Auto Trait Implementations§

§

impl<'a, T> Freeze for ListViewColumn<'a, T>

§

impl<'a, T = ()> !RefUnwindSafe for ListViewColumn<'a, T>

§

impl<'a, T = ()> !Send for ListViewColumn<'a, T>

§

impl<'a, T = ()> !Sync for ListViewColumn<'a, T>

§

impl<'a, T> Unpin for ListViewColumn<'a, T>

§

impl<'a, T = ()> !UnwindSafe for ListViewColumn<'a, T>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.