#[repr(C)]pub struct AnimateValue {
pub id: u64,
pub param: SetValue,
pub options: AnimationOptions,
pub _pad: u32,
}
Fields§
§id: u64
§param: SetValue
§options: AnimationOptions
§_pad: u32
Trait Implementations§
Source§impl CheckedBitPattern for AnimateValue
impl CheckedBitPattern for AnimateValue
Source§type Bits = AnimateValueBits
type Bits = AnimateValueBits
Self
must have the same layout as the specified Bits
except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern
.Source§fn is_valid_bit_pattern(bits: &AnimateValueBits) -> bool
fn is_valid_bit_pattern(bits: &AnimateValueBits) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self
.Source§impl Clone for AnimateValue
impl Clone for AnimateValue
Source§fn clone(&self) -> AnimateValue
fn clone(&self) -> AnimateValue
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 AnimateValue
impl Debug for AnimateValue
impl Copy for AnimateValue
impl NoUninit for AnimateValue
Auto Trait Implementations§
impl Freeze for AnimateValue
impl RefUnwindSafe for AnimateValue
impl Send for AnimateValue
impl Sync for AnimateValue
impl Unpin for AnimateValue
impl UnwindSafe for AnimateValue
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