#[non_exhaustive]pub struct ItemSprites {
pub default: String,
}
Expand description
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.default: String
Trait Implementations§
Source§impl Clone for ItemSprites
impl Clone for ItemSprites
Source§fn clone(&self) -> ItemSprites
fn clone(&self) -> ItemSprites
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 ItemSprites
impl Debug for ItemSprites
Source§impl<'de> Deserialize<'de> for ItemSprites
impl<'de> Deserialize<'de> for ItemSprites
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for ItemSprites
impl Hash for ItemSprites
Source§impl PartialEq for ItemSprites
impl PartialEq for ItemSprites
Source§impl Serialize for ItemSprites
impl Serialize for ItemSprites
impl Eq for ItemSprites
impl StructuralPartialEq for ItemSprites
Auto Trait Implementations§
impl Freeze for ItemSprites
impl RefUnwindSafe for ItemSprites
impl Send for ItemSprites
impl Sync for ItemSprites
impl Unpin for ItemSprites
impl UnwindSafe for ItemSprites
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