#[repr(C)]pub enum TextBoxEdgeOver {
Auto = 0,
Text = 1,
Cap = 2,
Ex = 3,
Ideographic = 4,
IdeographicInk = 5,
}Expand description
The OVER edge metric of text-box-edge (first value).
Variants§
Auto = 0
Use the line-fit-edge value (initial: text). auto is single-value
only: it cannot be paired with an under keyword.
Text = 1
Use the text-over baseline
Cap = 2
Use the cap-height baseline
Ex = 3
Use the x-height baseline
Ideographic = 4
Use the ideographic-over baseline
IdeographicInk = 5
Use the ideographic-ink-over baseline
Trait Implementations§
Source§impl Clone for TextBoxEdgeOver
impl Clone for TextBoxEdgeOver
Source§fn clone(&self) -> TextBoxEdgeOver
fn clone(&self) -> TextBoxEdgeOver
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 moreimpl Copy for TextBoxEdgeOver
Source§impl Debug for TextBoxEdgeOver
impl Debug for TextBoxEdgeOver
Source§impl Default for TextBoxEdgeOver
impl Default for TextBoxEdgeOver
Source§fn default() -> TextBoxEdgeOver
fn default() -> TextBoxEdgeOver
Returns the “default value” for a type. Read more
impl Eq for TextBoxEdgeOver
Source§impl FormatAsRustCode for TextBoxEdgeOver
impl FormatAsRustCode for TextBoxEdgeOver
fn format_as_rust_code(&self, _tabs: usize) -> String
Source§impl Hash for TextBoxEdgeOver
impl Hash for TextBoxEdgeOver
Source§impl Ord for TextBoxEdgeOver
impl Ord for TextBoxEdgeOver
Source§fn cmp(&self, other: &TextBoxEdgeOver) -> Ordering
fn cmp(&self, other: &TextBoxEdgeOver) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for TextBoxEdgeOver
impl PartialEq for TextBoxEdgeOver
Source§impl PartialOrd for TextBoxEdgeOver
impl PartialOrd for TextBoxEdgeOver
impl StructuralPartialEq for TextBoxEdgeOver
Auto Trait Implementations§
impl Freeze for TextBoxEdgeOver
impl RefUnwindSafe for TextBoxEdgeOver
impl Send for TextBoxEdgeOver
impl Sync for TextBoxEdgeOver
impl Unpin for TextBoxEdgeOver
impl UnsafeUnpin for TextBoxEdgeOver
impl UnwindSafe for TextBoxEdgeOver
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