pub enum VerticalAlign {
Baseline,
Top,
Middle,
Bottom,
Length(f32),
}Expand description
CSS vertical-align (simplified for inline layout).
Variants§
Trait Implementations§
Source§impl Clone for VerticalAlign
impl Clone for VerticalAlign
Source§fn clone(&self) -> VerticalAlign
fn clone(&self) -> VerticalAlign
Returns a duplicate 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 moreSource§impl Debug for VerticalAlign
impl Debug for VerticalAlign
Source§impl Default for VerticalAlign
impl Default for VerticalAlign
Source§fn default() -> VerticalAlign
fn default() -> VerticalAlign
Returns the “default value” for a type. Read more
Source§impl PartialEq for VerticalAlign
impl PartialEq for VerticalAlign
impl Copy for VerticalAlign
impl StructuralPartialEq for VerticalAlign
Auto Trait Implementations§
impl Freeze for VerticalAlign
impl RefUnwindSafe for VerticalAlign
impl Send for VerticalAlign
impl Sync for VerticalAlign
impl Unpin for VerticalAlign
impl UnwindSafe for VerticalAlign
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