pub struct SelectableTextOptions {
pub id: ElementId,
pub text: SharedString,
pub runs: Vec<TextRun>,
pub font_size: Pixels,
pub line_height: Pixels,
pub text_color: Hsla,
pub wrap: SelectableTextWrap,
pub key_context: &'static str,
pub fill_width: bool,
}Fields§
§id: ElementId§text: SharedString§runs: Vec<TextRun>§font_size: Pixels§line_height: Pixels§text_color: Hsla§wrap: SelectableTextWrap§key_context: &'static str§fill_width: boolImplementations§
Trait Implementations§
Source§impl Clone for SelectableTextOptions
impl Clone for SelectableTextOptions
Source§fn clone(&self) -> SelectableTextOptions
fn clone(&self) -> SelectableTextOptions
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 moreAuto Trait Implementations§
impl Freeze for SelectableTextOptions
impl RefUnwindSafe for SelectableTextOptions
impl Send for SelectableTextOptions
impl Sync for SelectableTextOptions
impl Unpin for SelectableTextOptions
impl UnsafeUnpin for SelectableTextOptions
impl UnwindSafe for SelectableTextOptions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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