Struct freya_engine::prelude::PlaceholderStyle  
#[repr(C)]pub struct PlaceholderStyle {
    pub width: f32,
    pub height: f32,
    pub alignment: PlaceholderAlignment,
    pub baseline: skia_textlayout_TextBaseline,
    pub baseline_offset: f32,
}Fields§
§width: f32§height: f32§alignment: PlaceholderAlignment§baseline: skia_textlayout_TextBaseline§baseline_offset: f32Distance 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§
§impl PlaceholderStyle
 
impl PlaceholderStyle
pub fn new( width: f32, height: f32, alignment: PlaceholderAlignment, baseline: skia_textlayout_TextBaseline, offset: f32 ) -> PlaceholderStyle
Trait Implementations§
§impl Clone for PlaceholderStyle
 
impl Clone for PlaceholderStyle
§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 more§impl Debug for PlaceholderStyle
 
impl Debug for PlaceholderStyle
§impl Default for PlaceholderStyle
 
impl Default for PlaceholderStyle
§fn default() -> PlaceholderStyle
 
fn default() -> PlaceholderStyle
Returns the “default value” for a type. Read more
§impl PartialEq<PlaceholderStyle> for PlaceholderStyle
 
impl PartialEq<PlaceholderStyle> for PlaceholderStyle
§fn eq(&self, other: &PlaceholderStyle) -> bool
 
fn eq(&self, other: &PlaceholderStyle) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.Auto Trait Implementations§
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