pub enum TextOverflow {
Wrap,
Ellipsis,
Clip,
}Expand description
Text overflow behavior when text exceeds available width.
Variants§
Wrap
Normal wrapping (default).
Ellipsis
Single-line truncation with “…” appended.
Clip
Single-line truncation without any indicator.
Trait Implementations§
Source§impl Clone for TextOverflow
impl Clone for TextOverflow
Source§fn clone(&self) -> TextOverflow
fn clone(&self) -> TextOverflow
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 TextOverflow
impl Debug for TextOverflow
Source§impl Default for TextOverflow
impl Default for TextOverflow
Source§fn default() -> TextOverflow
fn default() -> TextOverflow
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TextOverflow
impl<'de> Deserialize<'de> for TextOverflow
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
Source§impl PartialEq for TextOverflow
impl PartialEq for TextOverflow
Source§impl Serialize for TextOverflow
impl Serialize for TextOverflow
impl Copy for TextOverflow
impl Eq for TextOverflow
impl StructuralPartialEq for TextOverflow
Auto Trait Implementations§
impl Freeze for TextOverflow
impl RefUnwindSafe for TextOverflow
impl Send for TextOverflow
impl Sync for TextOverflow
impl Unpin for TextOverflow
impl UnsafeUnpin for TextOverflow
impl UnwindSafe for TextOverflow
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