pub enum TimelinePosition {
Left,
Right,
Alternate,
AlternateReverse,
}Expand description
Position where timeline content appears relative to the timeline axis.
Variants§
Left
Content appears on the left side of the timeline
Right
Content appears on the right side of the timeline
Alternate
Content alternates between left and right sides
AlternateReverse
Content alternates between right and left sides (starts on right)
Trait Implementations§
Source§impl Clone for TimelinePosition
impl Clone for TimelinePosition
Source§fn clone(&self) -> TimelinePosition
fn clone(&self) -> TimelinePosition
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 TimelinePosition
impl Debug for TimelinePosition
Source§impl Default for TimelinePosition
impl Default for TimelinePosition
Source§impl PartialEq for TimelinePosition
impl PartialEq for TimelinePosition
impl Copy for TimelinePosition
impl Eq for TimelinePosition
impl StructuralPartialEq for TimelinePosition
Auto Trait Implementations§
impl Freeze for TimelinePosition
impl RefUnwindSafe for TimelinePosition
impl Send for TimelinePosition
impl Sync for TimelinePosition
impl Unpin for TimelinePosition
impl UnsafeUnpin for TimelinePosition
impl UnwindSafe for TimelinePosition
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