pub struct Vec2Field {
pub name: String,
pub value: Vec2,
pub min: Option<f32>,
pub max: Option<f32>,
}Expand description
A 2-component vector field.
Fields§
§name: String§value: Vec2§min: Option<f32>§max: Option<f32>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Vec2Field
impl RefUnwindSafe for Vec2Field
impl Send for Vec2Field
impl Sync for Vec2Field
impl Unpin for Vec2Field
impl UnsafeUnpin for Vec2Field
impl UnwindSafe for Vec2Field
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