pub struct WindowStyle {
pub id: u32,
pub justify: Option<u32>,
pub pitch_direction: Option<Rotation>,
pub skew_direction: Option<Rotation>,
}Fields§
§id: u32§justify: Option<u32>Reference to anchor point to justify text???
pitch_direction: Option<Rotation>Pitch direction of text (vertical tilt)
skew_direction: Option<Rotation>Yaw (skew) direction of text (horizontal tilt)
Trait Implementations§
Source§impl Debug for WindowStyle
impl Debug for WindowStyle
Source§impl<'de> Deserialize<'de> for WindowStyle
impl<'de> Deserialize<'de> for WindowStyle
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for WindowStyle
impl RefUnwindSafe for WindowStyle
impl Send for WindowStyle
impl Sync for WindowStyle
impl Unpin for WindowStyle
impl UnwindSafe for WindowStyle
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