pub struct PathCubicToFieldsOffsets {
pub x: FieldOffset<PathCubicTo, f32, AllowPin>,
pub y: FieldOffset<PathCubicTo, f32, AllowPin>,
pub control_1_x: FieldOffset<PathCubicTo, f32, AllowPin>,
pub control_1_y: FieldOffset<PathCubicTo, f32, AllowPin>,
pub control_2_x: FieldOffset<PathCubicTo, f32, AllowPin>,
pub control_2_y: FieldOffset<PathCubicTo, f32, AllowPin>,
}
Expand description
Helper struct containing the offsets of the fields of the struct PathCubicTo
Generated from the #[derive(FieldOffsets)]
macro from the const-field-offset
crate
Fields§
§x: FieldOffset<PathCubicTo, f32, AllowPin>
§y: FieldOffset<PathCubicTo, f32, AllowPin>
§control_1_x: FieldOffset<PathCubicTo, f32, AllowPin>
§control_1_y: FieldOffset<PathCubicTo, f32, AllowPin>
§control_2_x: FieldOffset<PathCubicTo, f32, AllowPin>
§control_2_y: FieldOffset<PathCubicTo, f32, AllowPin>
Auto Trait Implementations§
impl Freeze for PathCubicToFieldsOffsets
impl RefUnwindSafe for PathCubicToFieldsOffsets
impl Send for PathCubicToFieldsOffsets
impl Sync for PathCubicToFieldsOffsets
impl Unpin for PathCubicToFieldsOffsets
impl UnwindSafe for PathCubicToFieldsOffsets
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