pub struct ListField {
pub name: String,
pub items: Vec<String>,
pub selected_index: Option<usize>,
pub collapsed: bool,
}Expand description
A list of homogeneous values.
Fields§
§name: String§items: Vec<String>§selected_index: Option<usize>§collapsed: boolImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ListField
impl RefUnwindSafe for ListField
impl Send for ListField
impl Sync for ListField
impl Unpin for ListField
impl UnsafeUnpin for ListField
impl UnwindSafe for ListField
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