pub enum PathEffect {
Undefined,
UpdatePresentation,
UpdateData,
}
Variants§
Undefined
Implementation dependant.
UpdatePresentation
The content of the active line in the presentation component (the line that contains the active presentation position) is updated to correspond to the content of the active line in the data component (the line that contains the active data position) according to the newly established character path characteristics in the presentation component; the active data position is moved to the first character position in the active line in the data component, the active presentation position in the presentation component is updated accordingly.
UpdateData
The content of the active line in the data component (the line that contains the active data position) is updated to correspond to the content of the active line in the presentation component (the line that contains the active presentation position) according to the newly established character path characteristics of the presentation component; the active presentation position is moved to the first character position in the active line in the presentation component, the active data position in the data component is updated accordingly.
Trait Implementations§
Source§impl Clone for PathEffect
impl Clone for PathEffect
Source§fn clone(&self) -> PathEffect
fn clone(&self) -> PathEffect
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
source
. Read more