#[repr(C, packed(4))]pub struct CurveProfile {
pub path_len: i16,
pub segments_len: i16,
pub preset: i32,
pub path: Pointer<CurveProfilePoint>,
pub table: Pointer<CurveProfilePoint>,
pub segments: Pointer<CurveProfilePoint>,
pub flag: i32,
pub changed_timestamp: i32,
pub view_rect: rctf,
pub clip_rect: rctf,
}Fields§
§path_len: i16§segments_len: i16§preset: i32§path: Pointer<CurveProfilePoint>§table: Pointer<CurveProfilePoint>§segments: Pointer<CurveProfilePoint>§flag: i32§changed_timestamp: i32§view_rect: rctf§clip_rect: rctfTrait Implementations§
Source§impl GeneratedBlendStruct for CurveProfile
impl GeneratedBlendStruct for CurveProfile
const BLEND_VERSION: Version
const BLEND_POINTER_SIZE: usize = 8usize
const BLEND_ENDIANNESS: Endianness = Endianness::Little
const STRUCT_NAME: &'static str = "CurveProfile"
const STRUCT_INDEX: usize = 776usize
const STRUCT_TYPE_INDEX: usize = 106usize
const IS_SYNTHETIC: bool = false
impl PointerTarget<CurveProfile> for CurveProfile
Auto Trait Implementations§
impl Freeze for CurveProfile
impl RefUnwindSafe for CurveProfile
impl Send for CurveProfile
impl Sync for CurveProfile
impl Unpin for CurveProfile
impl UnwindSafe for CurveProfile
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