pub struct ListRange {
pub min: Option<u32>,
pub max: Option<u32>,
}
Expand description
Selection Ranges in “list-multi”
Fields§
§min: Option<u32>
The ‘min’ attribute specifies the minimum allowable number of selected/entered values.
max: Option<u32>
The ‘max’ attribute specifies the maximum allowable number of selected/entered values.
Trait Implementations§
impl StructuralPartialEq for ListRange
Auto Trait Implementations§
impl Freeze for ListRange
impl RefUnwindSafe for ListRange
impl Send for ListRange
impl Sync for ListRange
impl Unpin for ListRange
impl UnwindSafe for ListRange
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