pub struct BezierKey {
pub time: f32,
pub value: f32,
pub in_tangent: f32,
pub out_tangent: f32,
}Fields§
§time: f32§value: f32§in_tangent: f32§out_tangent: f32Trait Implementations§
Auto Trait Implementations§
impl Freeze for BezierKey
impl RefUnwindSafe for BezierKey
impl Send for BezierKey
impl Sync for BezierKey
impl Unpin for BezierKey
impl UnsafeUnpin for BezierKey
impl UnwindSafe for BezierKey
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