pub struct Vec4(/* private fields */);Expand description
A 4-component float vector.
Implementations§
Trait Implementations§
Source§impl Inspectable for Vec4
impl Inspectable for Vec4
Source§fn inspect(&self) -> Vec<InspectorField>
fn inspect(&self) -> Vec<InspectorField>
Return a list of inspector fields describing this object’s current state.
Source§fn apply_changes(&mut self, changes: Vec<(String, InspectorValue)>)
fn apply_changes(&mut self, changes: Vec<(String, InspectorValue)>)
Apply a list of (name, new_value) changes from the inspector.
impl Copy for Vec4
impl StructuralPartialEq for Vec4
Auto Trait Implementations§
impl Freeze for Vec4
impl RefUnwindSafe for Vec4
impl Send for Vec4
impl Sync for Vec4
impl Unpin for Vec4
impl UnsafeUnpin for Vec4
impl UnwindSafe for Vec4
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