pub enum RectAlignment {
TopLeft,
Top,
TopRight,
Left,
Center,
Right,
BottomLeft,
Bottom,
BottomRight,
}Expand description
DrawingML rectangle alignment used as the origin of a shadow transform.
Variants§
Trait Implementations§
Source§impl Clone for RectAlignment
impl Clone for RectAlignment
Source§fn clone(&self) -> RectAlignment
fn clone(&self) -> RectAlignment
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 moreimpl Copy for RectAlignment
Source§impl Debug for RectAlignment
impl Debug for RectAlignment
impl Eq for RectAlignment
Source§impl PartialEq for RectAlignment
impl PartialEq for RectAlignment
impl StructuralPartialEq for RectAlignment
Auto Trait Implementations§
impl Freeze for RectAlignment
impl RefUnwindSafe for RectAlignment
impl Send for RectAlignment
impl Sync for RectAlignment
impl Unpin for RectAlignment
impl UnsafeUnpin for RectAlignment
impl UnwindSafe for RectAlignment
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