mirror of
https://github.com/lifegpc/msg-tool.git
synced 2026-06-07 21:38:58 +08:00
Add Qlie Pack Archive (.pack) v3.1 unpack support
This commit is contained in:
@@ -14,8 +14,13 @@ pub trait WriteSeek: Write + Seek {}
|
||||
/// A trait for types that can be displayed in debug format and are also support downcasting.
|
||||
pub trait AnyDebug: std::fmt::Debug + std::any::Any {}
|
||||
|
||||
/// A trait for reading in a stream with debug format.
|
||||
pub trait ReadDebug: Read + std::fmt::Debug {}
|
||||
|
||||
impl<T: Read + Seek + std::fmt::Debug> ReadSeek for T {}
|
||||
|
||||
impl<T: Read + std::fmt::Debug> ReadDebug for T {}
|
||||
|
||||
impl<T: Write + Seek> WriteSeek for T {}
|
||||
|
||||
impl<T: std::fmt::Debug + std::any::Any> AnyDebug for T {}
|
||||
|
||||
Reference in New Issue
Block a user