pub enum FontTransform {
None,
Rotate90,
Rotate180,
Rotate270,
}
Expand description
Specifying text transformations
Variants§
None
Nothing to transform
Rotate90
Rotating the text 90 degree clockwise
Rotate180
Rotating the text 180 degree clockwise
Rotate270
Rotating the text 270 degree clockwise
Implementations§
Trait Implementations§
Source§impl Clone for FontTransform
impl Clone for FontTransform
Source§fn clone(&self) -> FontTransform
fn clone(&self) -> FontTransform
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 moreAuto Trait Implementations§
impl Freeze for FontTransform
impl RefUnwindSafe for FontTransform
impl Send for FontTransform
impl Sync for FontTransform
impl Unpin for FontTransform
impl UnwindSafe for FontTransform
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 1 byte
Size for each variant:
None
: 0 bytesRotate90
: 0 bytesRotate180
: 0 bytesRotate270
: 0 bytes