pub enum DisplayListSection {
Data,
CacheData,
Chunk,
}
Expand description
DisplayListSection determines the target buffer for the display items.
Variants§
Data
The main/default buffer: contains item data and item group markers.
CacheData
Auxiliary buffer: contains the item data for item groups.
Chunk
Temporary buffer: contains the data for pending item group. Flushed to one of the buffers above, after item grouping finishes.
Auto Trait Implementations§
impl Freeze for DisplayListSection
impl RefUnwindSafe for DisplayListSection
impl Send for DisplayListSection
impl Sync for DisplayListSection
impl Unpin for DisplayListSection
impl UnwindSafe for DisplayListSection
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