pub enum TextAlignment {
PkTextAlignmentCenter,
PkTextAlignmentLeft,
PkTextAlignmentNatural,
PkTextAlignmentRight,
}Expand description
Alignment for the field’s contents. This key is not allowed for primary fields or back fields.
Variants§
PkTextAlignmentCenter
Alignment PKTextAlignmentCenter
PkTextAlignmentLeft
Alignment PKTextAlignmentLeft
PkTextAlignmentNatural
Alignment PKTextAlignmentNatural
PkTextAlignmentRight
Alignment PKTextAlignmentRight
Trait Implementations§
Source§impl Clone for TextAlignment
impl Clone for TextAlignment
Source§fn clone(&self) -> TextAlignment
fn clone(&self) -> TextAlignment
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TextAlignment
impl Debug for TextAlignment
Source§impl<'de> Deserialize<'de> for TextAlignment
impl<'de> Deserialize<'de> for TextAlignment
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 TextAlignment
impl RefUnwindSafe for TextAlignment
impl Send for TextAlignment
impl Sync for TextAlignment
impl Unpin for TextAlignment
impl UnsafeUnpin for TextAlignment
impl UnwindSafe for TextAlignment
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