pub struct BorderRectangleFieldsOffsets {
pub background: FieldOffset<BorderRectangle, Property<Brush>, AllowPin>,
pub border_width: FieldOffset<BorderRectangle, Property<LogicalLength>, AllowPin>,
pub border_radius: FieldOffset<BorderRectangle, Property<LogicalLength>, AllowPin>,
pub border_top_left_radius: FieldOffset<BorderRectangle, Property<LogicalLength>, AllowPin>,
pub border_top_right_radius: FieldOffset<BorderRectangle, Property<LogicalLength>, AllowPin>,
pub border_bottom_left_radius: FieldOffset<BorderRectangle, Property<LogicalLength>, AllowPin>,
pub border_bottom_right_radius: FieldOffset<BorderRectangle, Property<LogicalLength>, AllowPin>,
pub border_color: FieldOffset<BorderRectangle, Property<Brush>, AllowPin>,
pub cached_rendering_data: FieldOffset<BorderRectangle, CachedRenderingData, AllowPin>,
}
Expand description
Helper struct containing the offsets of the fields of the struct BorderRectangle
Generated from the #[derive(FieldOffsets)]
macro from the const-field-offset
crate
Fields§
§background: FieldOffset<BorderRectangle, Property<Brush>, AllowPin>
§border_width: FieldOffset<BorderRectangle, Property<LogicalLength>, AllowPin>
§border_radius: FieldOffset<BorderRectangle, Property<LogicalLength>, AllowPin>
§border_top_left_radius: FieldOffset<BorderRectangle, Property<LogicalLength>, AllowPin>
§border_top_right_radius: FieldOffset<BorderRectangle, Property<LogicalLength>, AllowPin>
§border_bottom_left_radius: FieldOffset<BorderRectangle, Property<LogicalLength>, AllowPin>
§border_bottom_right_radius: FieldOffset<BorderRectangle, Property<LogicalLength>, AllowPin>
§border_color: FieldOffset<BorderRectangle, Property<Brush>, AllowPin>
§cached_rendering_data: FieldOffset<BorderRectangle, CachedRenderingData, AllowPin>
Auto Trait Implementations§
impl Freeze for BorderRectangleFieldsOffsets
impl !RefUnwindSafe for BorderRectangleFieldsOffsets
impl Send for BorderRectangleFieldsOffsets
impl !Sync for BorderRectangleFieldsOffsets
impl !Unpin for BorderRectangleFieldsOffsets
impl UnwindSafe for BorderRectangleFieldsOffsets
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