pub enum AnimationDgmOnlyBuildType {
One,
LvlOne,
LvlAtOnce,
}Expand description
This simple type specifies the build options available only for animating a diagram. These options specify the manner in which the objects within the chart should be grouped and animated.
Variants§
One
Animate the diagram by elements. For a tree diagram the animation occurs by branch within the diagram tree.
LvlOne
Animate the diagram by the elements within a level, animating them one level element at a time.
LvlAtOnce
Animate the diagram one level at a time, animating the whole level as one object
Trait Implementations§
Source§impl Clone for AnimationDgmOnlyBuildType
impl Clone for AnimationDgmOnlyBuildType
Source§fn clone(&self) -> AnimationDgmOnlyBuildType
fn clone(&self) -> AnimationDgmOnlyBuildType
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 Debug for AnimationDgmOnlyBuildType
impl Debug for AnimationDgmOnlyBuildType
Source§impl FromStr for AnimationDgmOnlyBuildType
impl FromStr for AnimationDgmOnlyBuildType
impl Copy for AnimationDgmOnlyBuildType
Auto Trait Implementations§
impl Freeze for AnimationDgmOnlyBuildType
impl RefUnwindSafe for AnimationDgmOnlyBuildType
impl Send for AnimationDgmOnlyBuildType
impl Sync for AnimationDgmOnlyBuildType
impl Unpin for AnimationDgmOnlyBuildType
impl UnwindSafe for AnimationDgmOnlyBuildType
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