pub enum Align {
Start,
Center,
End,
Auto,
}Expand description
Alignment used by scroll-to helpers.
Variants§
Start
Align the item start to the viewport start.
Center
Center the item in the viewport.
End
Align the item end to the viewport end.
Auto
Choose Start/End automatically based on visibility.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Align
impl<'de> Deserialize<'de> for Align
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
impl Copy for Align
impl Eq for Align
impl StructuralPartialEq for Align
Auto Trait Implementations§
impl Freeze for Align
impl RefUnwindSafe for Align
impl Send for Align
impl Sync for Align
impl Unpin for Align
impl UnwindSafe for Align
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