pub struct InsertListViewColumn {
pub index: Option<i32>,
pub fmt: Option<ListViewColumnFlags>,
pub width: Option<i32>,
pub text: Option<String>,
}
Expand description
Represents a column in a detailed list view
Fields§
§index: Option<i32>
Index of the column
fmt: Option<ListViewColumnFlags>
Format of the column
width: Option<i32>
Width of the column in pixels
text: Option<String>
Text of the column to insert
Trait Implementations§
Source§impl Clone for InsertListViewColumn
impl Clone for InsertListViewColumn
Source§fn clone(&self) -> InsertListViewColumn
fn clone(&self) -> InsertListViewColumn
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for InsertListViewColumn
impl Debug for InsertListViewColumn
Source§impl Default for InsertListViewColumn
impl Default for InsertListViewColumn
Source§fn default() -> InsertListViewColumn
fn default() -> InsertListViewColumn
Returns the “default value” for a type. Read more
Source§impl<'a> From<&'a str> for InsertListViewColumn
impl<'a> From<&'a str> for InsertListViewColumn
Auto Trait Implementations§
impl Freeze for InsertListViewColumn
impl RefUnwindSafe for InsertListViewColumn
impl Send for InsertListViewColumn
impl Sync for InsertListViewColumn
impl Unpin for InsertListViewColumn
impl UnwindSafe for InsertListViewColumn
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