Struct term_transcript::svg::ScrollOptions
source · Available on crate feature
svg
only.Expand description
Options that influence the scrolling animation.
The animation is only displayed if the console exceeds Self::max_height
. In this case,
the console will be scrolled vertically with the interval of Self::interval
seconds
between every frame. The view is moved 4 lines of text per scroll.
Fields§
§max_height: usize
Maximum height of the console, in pixels. The default value allows to fit 19 lines of text into the view with the default template (potentially, slightly less because of vertical margins around user inputs).
interval: f32
Interval between keyframes in seconds. The default value is 4
.
Trait Implementations§
source§impl Clone for ScrollOptions
impl Clone for ScrollOptions
source§fn clone(&self) -> ScrollOptions
fn clone(&self) -> ScrollOptions
Returns a copy 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 ScrollOptions
impl Debug for ScrollOptions
source§impl Default for ScrollOptions
impl Default for ScrollOptions
source§impl<'de> Deserialize<'de> for ScrollOptions
impl<'de> Deserialize<'de> for ScrollOptions
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