pub struct RadioButton {
pub value: String,
pub file: PathBuf,
pub line: u32,
pub col: u32,
pub handler: Option<String>,
}Fields§
§value: String§file: PathBuf§line: u32§col: u32§handler: Option<String>Trait Implementations§
Source§impl Clone for RadioButton
impl Clone for RadioButton
Source§fn clone(&self) -> RadioButton
fn clone(&self) -> RadioButton
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for RadioButton
impl RefUnwindSafe for RadioButton
impl Send for RadioButton
impl Sync for RadioButton
impl Unpin for RadioButton
impl UnwindSafe for RadioButton
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