pub enum ParagraphAlignment {
Unknown,
Left,
Center,
Right,
}Expand description
A paragraph’s alignment.
See [MS-ONE] 2.3.94.
Variants§
Trait Implementations§
Source§impl Clone for ParagraphAlignment
impl Clone for ParagraphAlignment
Source§fn clone(&self) -> ParagraphAlignment
fn clone(&self) -> ParagraphAlignment
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 ParagraphAlignment
impl Debug for ParagraphAlignment
Source§impl Default for ParagraphAlignment
impl Default for ParagraphAlignment
Source§fn default() -> ParagraphAlignment
fn default() -> ParagraphAlignment
Returns the “default value” for a type. Read more
Source§impl PartialEq for ParagraphAlignment
impl PartialEq for ParagraphAlignment
Source§fn eq(&self, other: &ParagraphAlignment) -> bool
fn eq(&self, other: &ParagraphAlignment) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ParagraphAlignment
impl StructuralPartialEq for ParagraphAlignment
Auto Trait Implementations§
impl Freeze for ParagraphAlignment
impl RefUnwindSafe for ParagraphAlignment
impl Send for ParagraphAlignment
impl Sync for ParagraphAlignment
impl Unpin for ParagraphAlignment
impl UnsafeUnpin for ParagraphAlignment
impl UnwindSafe for ParagraphAlignment
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,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more