carbide_core 0.70.1

An easy-to-use, 100% Rust, extensible 2D GUI library.
Documentation
1
2
3
4
5
6
7
8
9
use crate::Rect;
use crate::render::owned_primitive_kind::OwnedPrimitiveKind;

#[derive(Clone)]
pub struct OwnedPrimitive {
    pub kind: OwnedPrimitiveKind,
    pub rect: Rect,
}