Enum gtk4::StackTransitionType [−][src]
#[non_exhaustive]
pub enum StackTransitionType {
Show 23 variants
None,
Crossfade,
SlideRight,
SlideLeft,
SlideUp,
SlideDown,
SlideLeftRight,
SlideUpDown,
OverUp,
OverDown,
OverLeft,
OverRight,
UnderUp,
UnderDown,
UnderLeft,
UnderRight,
OverUpDown,
OverDownUp,
OverLeftRight,
OverRightLeft,
RotateLeft,
RotateRight,
RotateLeftRight,
// some variants omitted
}
Expand description
Possible transitions between pages in a Stack
widget.
New values may be added to this enumeration over time.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
No transition
A cross-fade
Slide from left to right
Slide from right to left
Slide from bottom up
Slide from top down
Slide from left or right according to the children order
Slide from top down or bottom up according to the order
Cover the old page by sliding up
Cover the old page by sliding down
Cover the old page by sliding to the left
Cover the old page by sliding to the right
Uncover the new page by sliding up
Uncover the new page by sliding down
Uncover the new page by sliding to the left
Uncover the new page by sliding to the right
Cover the old page sliding up or uncover the new page sliding down, according to order
Cover the old page sliding down or uncover the new page sliding up, according to order
Cover the old page sliding left or uncover the new page sliding right, according to order
Cover the old page sliding right or uncover the new page sliding left, according to order
Pretend the pages are sides of a cube and rotate that cube to the left
Pretend the pages are sides of a cube and rotate that cube to the right
Pretend the pages are sides of a cube and rotate that cube to the left or right according to the children order
Trait Implementations
type Checker = GenericValueTypeChecker<Self>
type Checker = GenericValueTypeChecker<Self>
Value type checker.
Get the contained value from a Value
. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Returns the type identifier of Self
.
Auto Trait Implementations
impl RefUnwindSafe for StackTransitionType
impl Send for StackTransitionType
impl Sync for StackTransitionType
impl Unpin for StackTransitionType
impl UnwindSafe for StackTransitionType
Blanket Implementations
Mutably borrows from an owned value. Read more
Returns a SendValue
clone of self
.