pub enum TileUpdateType {
Full,
Delta,
Invalidate,
}Expand description
Tile update type
Variants§
Full
Full tile replacement
Delta
Incremental delta update
Invalidate
Tile invalidation (needs refresh)
Trait Implementations§
Source§impl Clone for TileUpdateType
impl Clone for TileUpdateType
Source§fn clone(&self) -> TileUpdateType
fn clone(&self) -> TileUpdateType
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 TileUpdateType
impl Debug for TileUpdateType
Source§impl PartialEq for TileUpdateType
impl PartialEq for TileUpdateType
impl Copy for TileUpdateType
impl Eq for TileUpdateType
impl StructuralPartialEq for TileUpdateType
Auto Trait Implementations§
impl Freeze for TileUpdateType
impl RefUnwindSafe for TileUpdateType
impl Send for TileUpdateType
impl Sync for TileUpdateType
impl Unpin for TileUpdateType
impl UnsafeUnpin for TileUpdateType
impl UnwindSafe for TileUpdateType
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