pub struct NativeTabFieldsOffsets {
pub title: FieldOffset<NativeTab, Property<SharedString>, AllowPin>,
pub icon: FieldOffset<NativeTab, Property<Image>, AllowPin>,
pub enabled: FieldOffset<NativeTab, Property<bool>, AllowPin>,
pub pressed: FieldOffset<NativeTab, Property<bool>, AllowPin>,
pub current: FieldOffset<NativeTab, Property<i32>, AllowPin>,
pub current_focused: FieldOffset<NativeTab, Property<i32>, AllowPin>,
pub tab_index: FieldOffset<NativeTab, Property<i32>, AllowPin>,
pub num_tabs: FieldOffset<NativeTab, Property<i32>, AllowPin>,
pub cached_rendering_data: FieldOffset<NativeTab, CachedRenderingData, AllowPin>,
/* private fields */
}
Expand description
Helper struct containing the offsets of the fields of the struct NativeTab
Generated from the #[derive(FieldOffsets)]
macro from the const-field-offset
crate
Fields§
§title: FieldOffset<NativeTab, Property<SharedString>, AllowPin>
§icon: FieldOffset<NativeTab, Property<Image>, AllowPin>
§enabled: FieldOffset<NativeTab, Property<bool>, AllowPin>
§pressed: FieldOffset<NativeTab, Property<bool>, AllowPin>
§current: FieldOffset<NativeTab, Property<i32>, AllowPin>
§current_focused: FieldOffset<NativeTab, Property<i32>, AllowPin>
§tab_index: FieldOffset<NativeTab, Property<i32>, AllowPin>
§num_tabs: FieldOffset<NativeTab, Property<i32>, AllowPin>
§cached_rendering_data: FieldOffset<NativeTab, CachedRenderingData, AllowPin>
Auto Trait Implementations§
impl Freeze for NativeTabFieldsOffsets
impl !RefUnwindSafe for NativeTabFieldsOffsets
impl !Send for NativeTabFieldsOffsets
impl !Sync for NativeTabFieldsOffsets
impl !Unpin for NativeTabFieldsOffsets
impl !UnwindSafe for NativeTabFieldsOffsets
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