pub enum ChunkType {
Show 14 variants
Palette0004 = 4,
Palette0011 = 17,
Layer = 8_196,
Cel = 8_197,
CelExtra = 8_198,
ColorProfile = 8_199,
ExternalFile = 8_200,
Mask = 8_214,
Path = 8_215,
Tags = 8_216,
Palette = 8_217,
UserData = 8_224,
Slice = 8_226,
Tileset = 8_227,
}Variants§
Palette0004 = 4
Palette0011 = 17
Layer = 8_196
Cel = 8_197
CelExtra = 8_198
ColorProfile = 8_199
ExternalFile = 8_200
Mask = 8_214
Path = 8_215
Tags = 8_216
Palette = 8_217
UserData = 8_224
Slice = 8_226
Tileset = 8_227
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ChunkType
impl RefUnwindSafe for ChunkType
impl Send for ChunkType
impl Sync for ChunkType
impl Unpin for ChunkType
impl UnwindSafe for ChunkType
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