pub struct BytecodeFile {
pub header: BytecodeFileHeader,
pub data: Vec<u32>,
}
Fields§
§header: BytecodeFileHeader
§data: Vec<u32>
Implementations§
Trait Implementations§
Source§impl Debug for BytecodeFile
impl Debug for BytecodeFile
Source§impl Default for BytecodeFile
impl Default for BytecodeFile
Source§fn default() -> BytecodeFile
fn default() -> BytecodeFile
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BytecodeFile
impl<'de> Deserialize<'de> for BytecodeFile
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 PartialEq for BytecodeFile
impl PartialEq for BytecodeFile
Source§impl Serialize for BytecodeFile
impl Serialize for BytecodeFile
impl Eq for BytecodeFile
impl StructuralPartialEq for BytecodeFile
Auto Trait Implementations§
impl Freeze for BytecodeFile
impl RefUnwindSafe for BytecodeFile
impl Send for BytecodeFile
impl Sync for BytecodeFile
impl Unpin for BytecodeFile
impl UnwindSafe for BytecodeFile
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.