#[repr(C)]pub struct nk_command_curve {
pub header: nk_command,
pub line_thickness: c_ushort,
pub begin: nk_vec2i,
pub end: nk_vec2i,
pub ctrl: [nk_vec2i; 2],
pub color: nk_color,
}
Fields§
§header: nk_command
§line_thickness: c_ushort
§begin: nk_vec2i
§end: nk_vec2i
§ctrl: [nk_vec2i; 2]
§color: nk_color
Trait Implementations§
Source§impl Clone for nk_command_curve
impl Clone for nk_command_curve
Source§fn clone(&self) -> nk_command_curve
fn clone(&self) -> nk_command_curve
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 Default for nk_command_curve
impl Default for nk_command_curve
impl Copy for nk_command_curve
Auto Trait Implementations§
impl Freeze for nk_command_curve
impl RefUnwindSafe for nk_command_curve
impl !Send for nk_command_curve
impl !Sync for nk_command_curve
impl Unpin for nk_command_curve
impl UnwindSafe for nk_command_curve
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