Struct i_slint_core::items::BoxShadowFieldsOffsets
source · pub struct BoxShadowFieldsOffsets {
pub border_radius: FieldOffset<BoxShadow, Property<LogicalLength>, AllowPin>,
pub offset_x: FieldOffset<BoxShadow, Property<LogicalLength>, AllowPin>,
pub offset_y: FieldOffset<BoxShadow, Property<LogicalLength>, AllowPin>,
pub color: FieldOffset<BoxShadow, Property<Color>, AllowPin>,
pub blur: FieldOffset<BoxShadow, Property<LogicalLength>, AllowPin>,
pub cached_rendering_data: FieldOffset<BoxShadow, CachedRenderingData, AllowPin>,
}Expand description
Helper struct containing the offsets of the fields of the struct BoxShadow
Generated from the #[derive(FieldOffsets)] macro from the const-field-offset crate
Fields§
§border_radius: FieldOffset<BoxShadow, Property<LogicalLength>, AllowPin>§offset_x: FieldOffset<BoxShadow, Property<LogicalLength>, AllowPin>§offset_y: FieldOffset<BoxShadow, Property<LogicalLength>, AllowPin>§color: FieldOffset<BoxShadow, Property<Color>, AllowPin>§blur: FieldOffset<BoxShadow, Property<LogicalLength>, AllowPin>§cached_rendering_data: FieldOffset<BoxShadow, CachedRenderingData, AllowPin>Auto Trait Implementations§
impl !RefUnwindSafe for BoxShadowFieldsOffsets
impl Send for BoxShadowFieldsOffsets
impl !Sync for BoxShadowFieldsOffsets
impl !Unpin for BoxShadowFieldsOffsets
impl UnwindSafe for BoxShadowFieldsOffsets
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