#[repr(C)]pub struct PlaceholderStyle {
pub width: scalar,
pub height: scalar,
pub alignment: PlaceholderAlignment,
pub baseline: TextBaseline,
pub baseline_offset: scalar,
}
Fields§
§width: scalar
§height: scalar
§alignment: PlaceholderAlignment
§baseline: TextBaseline
§baseline_offset: scalar
Distance from the top edge of the rect to the baseline position. This baseline will be aligned against the alphabetic baseline of the surrounding text.
Positive values drop the baseline lower (positions the rect higher) and small or negative values will cause the rect to be positioned underneath the line. When baseline == height, the bottom edge of the rect will rest on the alphabetic baseline.
Implementations§
Source§impl PlaceholderStyle
impl PlaceholderStyle
pub fn new( width: scalar, height: scalar, alignment: PlaceholderAlignment, baseline: TextBaseline, offset: scalar, ) -> Self
Trait Implementations§
Source§impl Clone for PlaceholderStyle
impl Clone for PlaceholderStyle
Source§fn clone(&self) -> PlaceholderStyle
fn clone(&self) -> PlaceholderStyle
Returns a copy 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 PlaceholderStyle
impl Debug for PlaceholderStyle
Source§impl Default for PlaceholderStyle
impl Default for PlaceholderStyle
Source§fn default() -> PlaceholderStyle
fn default() -> PlaceholderStyle
Returns the “default value” for a type. Read more
Source§impl PartialEq for PlaceholderStyle
impl PartialEq for PlaceholderStyle
Auto Trait Implementations§
impl Freeze for PlaceholderStyle
impl RefUnwindSafe for PlaceholderStyle
impl Send for PlaceholderStyle
impl Sync for PlaceholderStyle
impl Unpin for PlaceholderStyle
impl UnwindSafe for PlaceholderStyle
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