#[repr(u32)]pub enum ChunkLoaderError {
ChunkAlreadyLoaded = 0,
DataLengthMismatch = 1,
}Expand description
Chunk Loader error code.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ChunkLoaderError
impl Clone for ChunkLoaderError
Source§fn clone(&self) -> ChunkLoaderError
fn clone(&self) -> ChunkLoaderError
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 ChunkLoaderError
impl Debug for ChunkLoaderError
Source§impl Display for ChunkLoaderError
impl Display for ChunkLoaderError
Source§impl From<ChunkLoaderError> for Error
impl From<ChunkLoaderError> for Error
Source§fn from(error_code: ChunkLoaderError) -> Error
fn from(error_code: ChunkLoaderError) -> Error
Converts to this type from the input type.
Source§impl From<ChunkLoaderError> for u32
impl From<ChunkLoaderError> for u32
Source§fn from(e: ChunkLoaderError) -> u32
fn from(e: ChunkLoaderError) -> u32
Converts to this type from the input type.
impl Copy for ChunkLoaderError
Auto Trait Implementations§
impl Freeze for ChunkLoaderError
impl RefUnwindSafe for ChunkLoaderError
impl Send for ChunkLoaderError
impl Sync for ChunkLoaderError
impl Unpin for ChunkLoaderError
impl UnwindSafe for ChunkLoaderError
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