#[repr(C)]pub struct _cef_composition_underline_t {
pub size: usize,
pub range: cef_range_t,
pub color: cef_color_t,
pub background_color: cef_color_t,
pub thick: c_int,
pub style: cef_composition_underline_style_t,
}Expand description
Structure representing IME composition underline information. This is a thin wrapper around Blink’s WebCompositionUnderline class and should be kept in sync with that.
Fields§
§size: usizeSize of this structure.
range: cef_range_tUnderline character range.
color: cef_color_tText color.
background_color: cef_color_tBackground color.
thick: c_intSet to true (1) for thick underline.
style: cef_composition_underline_style_tStyle.
Trait Implementations§
Source§impl Clone for _cef_composition_underline_t
impl Clone for _cef_composition_underline_t
Source§fn clone(&self) -> _cef_composition_underline_t
fn clone(&self) -> _cef_composition_underline_t
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 _cef_composition_underline_t
impl Debug for _cef_composition_underline_t
impl Copy for _cef_composition_underline_t
Auto Trait Implementations§
impl Freeze for _cef_composition_underline_t
impl RefUnwindSafe for _cef_composition_underline_t
impl Send for _cef_composition_underline_t
impl Sync for _cef_composition_underline_t
impl Unpin for _cef_composition_underline_t
impl UnwindSafe for _cef_composition_underline_t
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