pub struct SpriteWarning {
pub message: String,
}Expand description
Warning when resolving a sprite or variant in lenient mode.
Fields§
§message: StringImplementations§
Source§impl SpriteWarning
impl SpriteWarning
pub fn not_found(name: &str) -> Self
pub fn base_not_found(variant: &str, base: &str) -> Self
pub fn source_not_found(sprite: &str, source: &str) -> Self
pub fn transform_error(sprite: &str, message: &str) -> Self
Trait Implementations§
Source§impl Clone for SpriteWarning
impl Clone for SpriteWarning
Source§fn clone(&self) -> SpriteWarning
fn clone(&self) -> SpriteWarning
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SpriteWarning
impl Debug for SpriteWarning
Source§impl PartialEq for SpriteWarning
impl PartialEq for SpriteWarning
Source§fn eq(&self, other: &SpriteWarning) -> bool
fn eq(&self, other: &SpriteWarning) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SpriteWarning
Auto Trait Implementations§
impl Freeze for SpriteWarning
impl RefUnwindSafe for SpriteWarning
impl Send for SpriteWarning
impl Sync for SpriteWarning
impl Unpin for SpriteWarning
impl UnsafeUnpin for SpriteWarning
impl UnwindSafe for SpriteWarning
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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