Enum cursive::view::ScrollStrategy[][src]

pub enum ScrollStrategy {
    KeepRow,
    StickToTop,
    StickToBottom,
}

Defines the scrolling behaviour on content or size change

Variants

Keeps the same row number

Sticks to the top.

Sticks to the bottom of the view.

Trait Implementations

impl Debug for ScrollStrategy
[src]

Formats the value using the given formatter. Read more

impl Default for ScrollStrategy
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations