#[repr(C)]pub struct CheckboxDef {
pub name: String,
pub page: u32,
pub x: f64,
pub y: f64,
pub size: f64,
pub checked: bool,
pub export_value: String,
}Expand description
Checkbox definition
Fields§
§name: StringField name
page: u32Page number (1-based)
x: f64X coordinate in points
y: f64Y coordinate in points
size: f64Size (width and height) in points
checked: boolInitially checked
export_value: StringExport value when checked
Trait Implementations§
Source§impl Clone for CheckboxDef
impl Clone for CheckboxDef
Source§impl Debug for CheckboxDef
impl Debug for CheckboxDef
Source§impl Default for CheckboxDef
impl Default for CheckboxDef
Source§impl ExternType for CheckboxDef
impl ExternType for CheckboxDef
Auto Trait Implementations§
impl Freeze for CheckboxDef
impl RefUnwindSafe for CheckboxDef
impl Send for CheckboxDef
impl Sync for CheckboxDef
impl Unpin for CheckboxDef
impl UnwindSafe for CheckboxDef
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