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