pax_properties_coproduct/
lib.rsuse std::cell::RefCell;
use std::ops::Range;
use std::rc::Rc;
pub enum PropertiesCoproduct {
None,
RepeatList(Vec<Rc<RefCell<PropertiesCoproduct>>>),
RepeatItem(Rc<PropertiesCoproduct>, usize),
#[allow(non_camel_case_types)]
usize(usize),#[allow(non_camel_case_types)]
isize(isize),}
pub enum TypesCoproduct {
#[allow(non_camel_case_types)]
f64(f64),
#[allow(non_camel_case_types)]
bool(bool),
#[allow(non_camel_case_types)]
isize(isize),
#[allow(non_camel_case_types)]
usize(usize), #[allow(non_camel_case_types)]
stdCOCOvecCOCOVecLABRstdCOCOrcCOCORcLABRPropertiesCoproductRABRRABR(Vec<Rc<PropertiesCoproduct>>),
#[allow(non_camel_case_types)]
stdCOCOopsCOCORangeLABRisizeRABR(Range<isize>),
String(String),
Transform2D(pax_runtime_api::Transform2D),
SizePixels(pax_runtime_api::SizePixels),
Size(pax_runtime_api::Size),
Rotation(pax_runtime_api::Rotation),
Numeric(pax_runtime_api::Numeric),
StringBox(pax_runtime_api::StringBox)
}