pub enum ItemInstantiation {
All,
OnlyVisible,
}Expand description
The way in which a List should instantiate its Items.
Variants§
All
Instantiate an Item for every element, regardless of visibility.
OnlyVisible
Only instantiate visible Items.
Trait Implementations§
Source§impl Clone for ItemInstantiation
impl Clone for ItemInstantiation
Source§fn clone(&self) -> ItemInstantiation
fn clone(&self) -> ItemInstantiation
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 moreSource§impl Debug for ItemInstantiation
impl Debug for ItemInstantiation
Source§impl PartialEq for ItemInstantiation
impl PartialEq for ItemInstantiation
impl Copy for ItemInstantiation
impl StructuralPartialEq for ItemInstantiation
Auto Trait Implementations§
impl Freeze for ItemInstantiation
impl RefUnwindSafe for ItemInstantiation
impl Send for ItemInstantiation
impl Sync for ItemInstantiation
impl Unpin for ItemInstantiation
impl UnwindSafe for ItemInstantiation
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