#[repr(C, align(2))]pub struct ImGuiPackedDate {
pub _bitfield_align_1: [u8; 0],
pub _bitfield_1: __BindgenBitfieldUnit<[u8; 2]>,
}Fields§
§_bitfield_align_1: [u8; 0]§_bitfield_1: __BindgenBitfieldUnit<[u8; 2]>Implementations§
Source§impl ImGuiPackedDate
impl ImGuiPackedDate
pub fn Year(&self) -> ImU16
pub fn set_Year(&mut self, val: ImU16)
pub unsafe fn Year_raw(this: *const Self) -> ImU16
pub unsafe fn set_Year_raw(this: *mut Self, val: ImU16)
pub fn Month(&self) -> ImU16
pub fn set_Month(&mut self, val: ImU16)
pub unsafe fn Month_raw(this: *const Self) -> ImU16
pub unsafe fn set_Month_raw(this: *mut Self, val: ImU16)
pub fn Day(&self) -> ImU16
pub fn set_Day(&mut self, val: ImU16)
pub unsafe fn Day_raw(this: *const Self) -> ImU16
pub unsafe fn set_Day_raw(this: *mut Self, val: ImU16)
pub fn new_bitfield_1( Year: ImU16, Month: ImU16, Day: ImU16, ) -> __BindgenBitfieldUnit<[u8; 2]>
Trait Implementations§
Source§impl Clone for ImGuiPackedDate
impl Clone for ImGuiPackedDate
Source§fn clone(&self) -> ImGuiPackedDate
fn clone(&self) -> ImGuiPackedDate
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ImGuiPackedDate
Auto Trait Implementations§
impl Freeze for ImGuiPackedDate
impl RefUnwindSafe for ImGuiPackedDate
impl Send for ImGuiPackedDate
impl Sync for ImGuiPackedDate
impl Unpin for ImGuiPackedDate
impl UnsafeUnpin for ImGuiPackedDate
impl UnwindSafe for ImGuiPackedDate
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