pub struct ImageDependency {
pub key: ImageKey,
pub generation: ImageGeneration,
}Expand description
Information stored an image dependency
Fields§
§key: ImageKey§generation: ImageGenerationImplementations§
Source§impl ImageDependency
impl ImageDependency
pub const INVALID: ImageDependency
Trait Implementations§
Source§impl Clone for ImageDependency
impl Clone for ImageDependency
Source§fn clone(&self) -> ImageDependency
fn clone(&self) -> ImageDependency
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 ImageDependency
impl Debug for ImageDependency
Source§impl Default for ImageDependency
impl Default for ImageDependency
Source§fn default() -> ImageDependency
fn default() -> ImageDependency
Returns the “default value” for a type. Read more
Source§impl PartialEq for ImageDependency
impl PartialEq for ImageDependency
Source§impl Peek for ImageDependency
impl Peek for ImageDependency
Source§impl Poke for ImageDependency
impl Poke for ImageDependency
Source§impl Serialize for ImageDependency
impl Serialize for ImageDependency
impl Copy for ImageDependency
impl StructuralPartialEq for ImageDependency
Auto Trait Implementations§
impl Freeze for ImageDependency
impl RefUnwindSafe for ImageDependency
impl Send for ImageDependency
impl Sync for ImageDependency
impl Unpin for ImageDependency
impl UnwindSafe for ImageDependency
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§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