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