pub enum OverflowedContentDirection {
RightToLeft,
LeftToRight,
}Expand description
The direction in which OverflowedContent scrolls.
Variants§
RightToLeft
Content enters from the right edge and scrolls to the left.
LeftToRight
Content starts at the left edge and scrolls to the right.
Trait Implementations§
Source§impl Clone for OverflowedContentDirection
impl Clone for OverflowedContentDirection
Source§fn clone(&self) -> OverflowedContentDirection
fn clone(&self) -> OverflowedContentDirection
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 Default for OverflowedContentDirection
impl Default for OverflowedContentDirection
Source§fn default() -> OverflowedContentDirection
fn default() -> OverflowedContentDirection
Returns the “default value” for a type. Read more
impl StructuralPartialEq for OverflowedContentDirection
Auto Trait Implementations§
impl Freeze for OverflowedContentDirection
impl RefUnwindSafe for OverflowedContentDirection
impl Send for OverflowedContentDirection
impl Sync for OverflowedContentDirection
impl Unpin for OverflowedContentDirection
impl UnsafeUnpin for OverflowedContentDirection
impl UnwindSafe for OverflowedContentDirection
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,
§impl<T> ComponentProps for T
impl<T> ComponentProps for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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