pub struct DioxusOptionInfo {
pub long: &'static str,
pub short: Option<&'static str>,
pub option_type: DioxusOptionType,
pub description: &'static str,
pub possible_values: Option<Vec<&'static str>>,
}
Expand description
Dioxus option metadata
Fields§
§long: &'static str
§short: Option<&'static str>
§option_type: DioxusOptionType
§description: &'static str
§possible_values: Option<Vec<&'static str>>
Trait Implementations§
Source§impl Clone for DioxusOptionInfo
impl Clone for DioxusOptionInfo
Source§fn clone(&self) -> DioxusOptionInfo
fn clone(&self) -> DioxusOptionInfo
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 DioxusOptionInfo
impl RefUnwindSafe for DioxusOptionInfo
impl Send for DioxusOptionInfo
impl Sync for DioxusOptionInfo
impl Unpin for DioxusOptionInfo
impl UnwindSafe for DioxusOptionInfo
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