pub struct TexturesDelta {
pub set: Vec<(TextureId, ImageDelta)>,
pub free: Vec<TextureId>,
}Expand description
What has been allocated and freed during the last period.
These are commands given to the integration painter.
Fields§
§set: Vec<(TextureId, ImageDelta)>New or changed textures. Apply before painting.
free: Vec<TextureId>Textures to free after painting.
Implementations§
Trait Implementations§
source§impl Clone for TexturesDelta
impl Clone for TexturesDelta
source§fn clone(&self) -> TexturesDelta
fn clone(&self) -> TexturesDelta
Returns a copy of the value. Read more
1.6.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 TexturesDelta
impl Debug for TexturesDelta
source§impl Default for TexturesDelta
impl Default for TexturesDelta
source§fn default() -> TexturesDelta
fn default() -> TexturesDelta
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TexturesDelta
impl<'de> Deserialize<'de> for TexturesDelta
source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<TexturesDelta, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<TexturesDelta, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for TexturesDelta
impl PartialEq for TexturesDelta
source§impl Serialize for TexturesDelta
impl Serialize for TexturesDelta
source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for TexturesDelta
Auto Trait Implementations§
impl Freeze for TexturesDelta
impl RefUnwindSafe for TexturesDelta
impl Send for TexturesDelta
impl Sync for TexturesDelta
impl Unpin for TexturesDelta
impl UnwindSafe for TexturesDelta
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more