pub struct TableIconColumn<'i, 'id, Name> {
    pub name: Name,
    pub icon: Option<&'i Icon>,
    pub flags: TableColumnFlags,
    pub init_width_or_weight: f32,
    pub user_id: Id<'id>,
}
Expand description

A table column setup with icon.

Fields§

§name: Name§icon: Option<&'i Icon>§flags: TableColumnFlags§init_width_or_weight: f32§user_id: Id<'id>

Implementations§

source§

impl<'i, 'id, Name> TableIconColumn<'i, 'id, Name>

source

pub fn new(name: Name, icon: Option<&'i Icon>) -> Self

Creates a new icon column.

source

pub fn with_flags( name: Name, icon: Option<&'i Icon>, flags: TableColumnFlags ) -> Self

Creates a new icon column with given flags.

source

pub fn with_id( name: Name, icon: Option<&'i Icon>, flags: TableColumnFlags, init_width_or_weight: f32, user_id: Id<'id> ) -> Self

Creates a new icon column with given width/weight and id.

source

pub fn as_setup(&self) -> TableColumnSetup<'id, &str>
where Name: AsRef<str>,

Generates the equivalent TableColumnSetup.

Trait Implementations§

source§

impl<'i, 'id, Name: Clone> Clone for TableIconColumn<'i, 'id, Name>

source§

fn clone(&self) -> TableIconColumn<'i, 'id, Name>

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<'i, 'id, Name: Debug> Debug for TableIconColumn<'i, 'id, Name>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<N> Default for TableIconColumn<'_, '_, N>
where N: Default,

source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<'i, 'id, Name> Freeze for TableIconColumn<'i, 'id, Name>
where Name: Freeze,

§

impl<'i, 'id, Name> RefUnwindSafe for TableIconColumn<'i, 'id, Name>
where Name: RefUnwindSafe,

§

impl<'i, 'id, Name> !Send for TableIconColumn<'i, 'id, Name>

§

impl<'i, 'id, Name> !Sync for TableIconColumn<'i, 'id, Name>

§

impl<'i, 'id, Name> Unpin for TableIconColumn<'i, 'id, Name>
where Name: Unpin,

§

impl<'i, 'id, Name> UnwindSafe for TableIconColumn<'i, 'id, Name>
where Name: UnwindSafe,

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.