pub enum AutoSizeMode {
Never,
Always,
OnParentResize,
}Variants§
Never
Never auto-size the columns.
Always
Always auto-size the columns
OnParentResize
Auto-size the columns if the parents’ width changes
Trait Implementations§
Source§impl Clone for AutoSizeMode
impl Clone for AutoSizeMode
Source§fn clone(&self) -> AutoSizeMode
fn clone(&self) -> AutoSizeMode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AutoSizeMode
Source§impl Debug for AutoSizeMode
impl Debug for AutoSizeMode
Source§impl Default for AutoSizeMode
impl Default for AutoSizeMode
Source§fn default() -> AutoSizeMode
fn default() -> AutoSizeMode
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AutoSizeMode
impl<'de> Deserialize<'de> for AutoSizeMode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for AutoSizeMode
Source§impl PartialEq for AutoSizeMode
impl PartialEq for AutoSizeMode
Source§impl Serialize for AutoSizeMode
impl Serialize for AutoSizeMode
impl StructuralPartialEq for AutoSizeMode
Auto Trait Implementations§
impl Freeze for AutoSizeMode
impl RefUnwindSafe for AutoSizeMode
impl Send for AutoSizeMode
impl Sync for AutoSizeMode
impl Unpin for AutoSizeMode
impl UnsafeUnpin for AutoSizeMode
impl UnwindSafe for AutoSizeMode
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more