pub struct ChromeImeTextSpanStyle {
pub underline_color: u32,
pub thickness: ChromeImeTextSpanThickness,
pub underline_style: ChromeImeTextSpanUnderlineStyle,
pub text_color: u32,
pub background_color: u32,
pub suggestion_highlight_color: u32,
pub remove_on_finish_composing: bool,
pub interim_char_selection: bool,
pub should_hide_suggestion_menu: bool,
}Fields§
§underline_color: u32§thickness: ChromeImeTextSpanThickness§underline_style: ChromeImeTextSpanUnderlineStyle§text_color: u32§background_color: u32§suggestion_highlight_color: u32§remove_on_finish_composing: bool§interim_char_selection: boolTrait Implementations§
Source§impl Clone for ChromeImeTextSpanStyle
impl Clone for ChromeImeTextSpanStyle
Source§fn clone(&self) -> ChromeImeTextSpanStyle
fn clone(&self) -> ChromeImeTextSpanStyle
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 ChromeImeTextSpanStyle
impl Debug for ChromeImeTextSpanStyle
Source§impl Default for ChromeImeTextSpanStyle
impl Default for ChromeImeTextSpanStyle
Source§fn default() -> ChromeImeTextSpanStyle
fn default() -> ChromeImeTextSpanStyle
Returns the “default value” for a type. Read more
Source§impl From<ChromeImeTextSpanStyle> for ImeTextSpanStyle
impl From<ChromeImeTextSpanStyle> for ImeTextSpanStyle
Source§fn from(value: ChromeImeTextSpanStyle) -> Self
fn from(value: ChromeImeTextSpanStyle) -> Self
Converts to this type from the input type.
Source§impl From<ImeTextSpanStyle> for ChromeImeTextSpanStyle
impl From<ImeTextSpanStyle> for ChromeImeTextSpanStyle
Source§fn from(value: ImeTextSpanStyle) -> Self
fn from(value: ImeTextSpanStyle) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ChromeImeTextSpanStyle
impl PartialEq for ChromeImeTextSpanStyle
impl Eq for ChromeImeTextSpanStyle
impl StructuralPartialEq for ChromeImeTextSpanStyle
Auto Trait Implementations§
impl Freeze for ChromeImeTextSpanStyle
impl RefUnwindSafe for ChromeImeTextSpanStyle
impl Send for ChromeImeTextSpanStyle
impl Sync for ChromeImeTextSpanStyle
impl Unpin for ChromeImeTextSpanStyle
impl UnsafeUnpin for ChromeImeTextSpanStyle
impl UnwindSafe for ChromeImeTextSpanStyle
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