struct ColorCache {
color_cache_bits: u8,
color_cache: Vec<[u8; 4]>,
}
Fields§
§color_cache_bits: u8
§color_cache: Vec<[u8; 4]>
Implementations§
Trait Implementations§
Source§impl Clone for ColorCache
impl Clone for ColorCache
Source§fn clone(&self) -> ColorCache
fn clone(&self) -> ColorCache
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 moreAuto Trait Implementations§
impl Freeze for ColorCache
impl RefUnwindSafe for ColorCache
impl Send for ColorCache
impl Sync for ColorCache
impl Unpin for ColorCache
impl UnwindSafe for ColorCache
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