pub struct CompositionUnderline {
pub size: usize,
pub range: Range,
pub color: u32,
pub background_color: u32,
pub thick: c_int,
pub style: CompositionUnderlineStyle,
}Expand description
See _cef_composition_underline_t for more documentation.
Fields§
§size: usize§range: Range§color: u32§background_color: u32§thick: c_int§style: CompositionUnderlineStyleTrait Implementations§
Source§impl Clone for CompositionUnderline
impl Clone for CompositionUnderline
Source§fn clone(&self) -> CompositionUnderline
fn clone(&self) -> CompositionUnderline
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 CompositionUnderline
impl Debug for CompositionUnderline
Source§impl Default for CompositionUnderline
impl Default for CompositionUnderline
Source§impl From<CompositionUnderline> for _cef_composition_underline_t
impl From<CompositionUnderline> for _cef_composition_underline_t
Source§fn from(value: CompositionUnderline) -> Self
fn from(value: CompositionUnderline) -> Self
Converts to this type from the input type.
Source§impl From<_cef_composition_underline_t> for CompositionUnderline
impl From<_cef_composition_underline_t> for CompositionUnderline
Source§fn from(value: _cef_composition_underline_t) -> Self
fn from(value: _cef_composition_underline_t) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CompositionUnderline
impl RefUnwindSafe for CompositionUnderline
impl Send for CompositionUnderline
impl Sync for CompositionUnderline
impl Unpin for CompositionUnderline
impl UnwindSafe for CompositionUnderline
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