#[repr(C)]pub struct NexusLink {
pub width: u32,
pub height: u32,
pub scaling: f32,
pub is_moving: bool,
pub is_camera_moving: bool,
pub is_gameplay: bool,
pub font: *mut ImFont,
pub font_big: *mut ImFont,
pub font_ui: *mut ImFont,
}Expand description
Nexus link data.
Fields§
§width: u32§height: u32§scaling: f32§is_moving: bool§is_camera_moving: bool§is_gameplay: bool§font: *mut ImFont§font_big: *mut ImFont§font_ui: *mut ImFontImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NexusLink
impl RefUnwindSafe for NexusLink
impl !Send for NexusLink
impl !Sync for NexusLink
impl Unpin for NexusLink
impl UnwindSafe for NexusLink
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