Struct embedded_graphics::mono_font::DecorationDimensions
source · [−]Expand description
Decoration dimensions.
DecorationDimensions
is used to specify the position and height of underline and strikethrough
decorations in MonoFont
s.
Fields
offset: u32
Offset from the top of the character to the top of the decoration.
height: u32
Height of the decoration.
Implementations
sourceimpl DecorationDimensions
impl DecorationDimensions
sourcepub const fn default_strikethrough(glyph_height: u32) -> Self
pub const fn default_strikethrough(glyph_height: u32) -> Self
Creates a new default strikethrough decoration for the given glyph height.
sourcepub const fn default_underline(glyph_height: u32) -> Self
pub const fn default_underline(glyph_height: u32) -> Self
Creates a new default underline decoration for the given glyph height.
Trait Implementations
sourceimpl Clone for DecorationDimensions
impl Clone for DecorationDimensions
sourcefn clone(&self) -> DecorationDimensions
fn clone(&self) -> DecorationDimensions
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for DecorationDimensions
impl Debug for DecorationDimensions
sourceimpl Default for DecorationDimensions
impl Default for DecorationDimensions
sourcefn default() -> DecorationDimensions
fn default() -> DecorationDimensions
Returns the “default value” for a type. Read more
sourceimpl Hash for DecorationDimensions
impl Hash for DecorationDimensions
sourceimpl Ord for DecorationDimensions
impl Ord for DecorationDimensions
sourceimpl PartialEq<DecorationDimensions> for DecorationDimensions
impl PartialEq<DecorationDimensions> for DecorationDimensions
sourcefn eq(&self, other: &DecorationDimensions) -> bool
fn eq(&self, other: &DecorationDimensions) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DecorationDimensions) -> bool
fn ne(&self, other: &DecorationDimensions) -> bool
This method tests for !=
.
sourceimpl PartialOrd<DecorationDimensions> for DecorationDimensions
impl PartialOrd<DecorationDimensions> for DecorationDimensions
sourcefn partial_cmp(&self, other: &DecorationDimensions) -> Option<Ordering>
fn partial_cmp(&self, other: &DecorationDimensions) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Copy for DecorationDimensions
impl Eq for DecorationDimensions
impl StructuralEq for DecorationDimensions
impl StructuralPartialEq for DecorationDimensions
Auto Trait Implementations
impl RefUnwindSafe for DecorationDimensions
impl Send for DecorationDimensions
impl Sync for DecorationDimensions
impl Unpin for DecorationDimensions
impl UnwindSafe for DecorationDimensions
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> CheckedAs for T
impl<T> CheckedAs for T
sourcepub fn checked_as<Dst>(self) -> Option<Dst> where
T: CheckedCast<Dst>,
pub fn checked_as<Dst>(self) -> Option<Dst> where
T: CheckedCast<Dst>,
Casts the value.
sourceimpl<Src, Dst> CheckedCastFrom<Src> for Dst where
Src: CheckedCast<Dst>,
impl<Src, Dst> CheckedCastFrom<Src> for Dst where
Src: CheckedCast<Dst>,
sourcepub fn checked_cast_from(src: Src) -> Option<Dst>
pub fn checked_cast_from(src: Src) -> Option<Dst>
Casts the value.
sourceimpl<T> OverflowingAs for T
impl<T> OverflowingAs for T
sourcepub fn overflowing_as<Dst>(self) -> (Dst, bool) where
T: OverflowingCast<Dst>,
pub fn overflowing_as<Dst>(self) -> (Dst, bool) where
T: OverflowingCast<Dst>,
Casts the value.
sourceimpl<Src, Dst> OverflowingCastFrom<Src> for Dst where
Src: OverflowingCast<Dst>,
impl<Src, Dst> OverflowingCastFrom<Src> for Dst where
Src: OverflowingCast<Dst>,
sourcepub fn overflowing_cast_from(src: Src) -> (Dst, bool)
pub fn overflowing_cast_from(src: Src) -> (Dst, bool)
OverflowingCasts the value.
sourceimpl<T> SaturatingAs for T
impl<T> SaturatingAs for T
sourcepub fn saturating_as<Dst>(self) -> Dst where
T: SaturatingCast<Dst>,
pub fn saturating_as<Dst>(self) -> Dst where
T: SaturatingCast<Dst>,
Casts the value.
sourceimpl<Src, Dst> SaturatingCastFrom<Src> for Dst where
Src: SaturatingCast<Dst>,
impl<Src, Dst> SaturatingCastFrom<Src> for Dst where
Src: SaturatingCast<Dst>,
sourcepub fn saturating_cast_from(src: Src) -> Dst
pub fn saturating_cast_from(src: Src) -> Dst
Casts the value.
sourceimpl<T> UnwrappedAs for T
impl<T> UnwrappedAs for T
sourcepub fn unwrapped_as<Dst>(self) -> Dst where
T: UnwrappedCast<Dst>,
pub fn unwrapped_as<Dst>(self) -> Dst where
T: UnwrappedCast<Dst>,
Casts the value.
sourceimpl<Src, Dst> UnwrappedCastFrom<Src> for Dst where
Src: UnwrappedCast<Dst>,
impl<Src, Dst> UnwrappedCastFrom<Src> for Dst where
Src: UnwrappedCast<Dst>,
sourcepub fn unwrapped_cast_from(src: Src) -> Dst
pub fn unwrapped_cast_from(src: Src) -> Dst
UnwrappedCasts the value.
sourceimpl<T> WrappingAs for T
impl<T> WrappingAs for T
sourcepub fn wrapping_as<Dst>(self) -> Dst where
T: WrappingCast<Dst>,
pub fn wrapping_as<Dst>(self) -> Dst where
T: WrappingCast<Dst>,
Casts the value.
sourceimpl<Src, Dst> WrappingCastFrom<Src> for Dst where
Src: WrappingCast<Dst>,
impl<Src, Dst> WrappingCastFrom<Src> for Dst where
Src: WrappingCast<Dst>,
sourcepub fn wrapping_cast_from(src: Src) -> Dst
pub fn wrapping_cast_from(src: Src) -> Dst
WrappingCasts the value.