pub struct ZoomKeyframe {
pub frame: Frame,
pub scale: f64,
}Expand description
A dopesheet keyframe for a zoom: a project frame and the scale at it.
Fields§
§frame: FrameProject frame of the keyframe.
scale: f64Scale at the keyframe (1.0 = no zoom; amount across the hold).
Trait Implementations§
Source§impl Clone for ZoomKeyframe
impl Clone for ZoomKeyframe
Source§fn clone(&self) -> ZoomKeyframe
fn clone(&self) -> ZoomKeyframe
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ZoomKeyframe
impl Debug for ZoomKeyframe
Source§impl PartialEq for ZoomKeyframe
impl PartialEq for ZoomKeyframe
Source§fn eq(&self, other: &ZoomKeyframe) -> bool
fn eq(&self, other: &ZoomKeyframe) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ZoomKeyframe
impl StructuralPartialEq for ZoomKeyframe
Auto Trait Implementations§
impl Freeze for ZoomKeyframe
impl RefUnwindSafe for ZoomKeyframe
impl Send for ZoomKeyframe
impl Sync for ZoomKeyframe
impl Unpin for ZoomKeyframe
impl UnsafeUnpin for ZoomKeyframe
impl UnwindSafe for ZoomKeyframe
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