#[repr(C)]pub struct lv_obj_style_t {
pub style: *const lv_style_t,
pub _bitfield_align_1: [u32; 0],
pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4]>,
pub __bindgen_padding_0: u32,
}Expand description
TYPEDEFS
Fields§
§style: *const lv_style_t§_bitfield_align_1: [u32; 0]§_bitfield_1: __BindgenBitfieldUnit<[u8; 4]>§__bindgen_padding_0: u32Implementations§
Source§impl lv_obj_style_t
impl lv_obj_style_t
pub fn selector(&self) -> u32
pub fn set_selector(&mut self, val: u32)
pub unsafe fn selector_raw(this: *const Self) -> u32
pub unsafe fn set_selector_raw(this: *mut Self, val: u32)
pub fn is_local(&self) -> u32
pub fn set_is_local(&mut self, val: u32)
pub unsafe fn is_local_raw(this: *const Self) -> u32
pub unsafe fn set_is_local_raw(this: *mut Self, val: u32)
pub fn is_trans(&self) -> u32
pub fn set_is_trans(&mut self, val: u32)
pub unsafe fn is_trans_raw(this: *const Self) -> u32
pub unsafe fn set_is_trans_raw(this: *mut Self, val: u32)
pub fn new_bitfield_1( selector: u32, is_local: u32, is_trans: u32, ) -> __BindgenBitfieldUnit<[u8; 4]>
Trait Implementations§
Source§impl Clone for lv_obj_style_t
impl Clone for lv_obj_style_t
Source§fn clone(&self) -> lv_obj_style_t
fn clone(&self) -> lv_obj_style_t
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 Debug for lv_obj_style_t
impl Debug for lv_obj_style_t
impl Copy for lv_obj_style_t
Auto Trait Implementations§
impl Freeze for lv_obj_style_t
impl RefUnwindSafe for lv_obj_style_t
impl !Send for lv_obj_style_t
impl !Sync for lv_obj_style_t
impl Unpin for lv_obj_style_t
impl UnwindSafe for lv_obj_style_t
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