Struct nt_hive2::Cell

source ·
pub struct Cell<T, A: Any + Copy>
where T: BinRead<Args = A>,
{ /* private fields */ }
Expand description

A Cell represents the most basic data structure of hive files. Nearly every other data is stored as content of a Cell.

As Cell is a generic, it receives two generic arguments:

  • T denotes the type contained in the Cell
  • A specifies the arguments required by binread to correctly parse an object of type T

§Usage

If you know what kind of data should be stored in a certain Cell, you can simply read it. Assume you have Cell which should contain a KeyNode, you can read it as follows:

use nt_hive2::*;
use std::io::{Seek, SeekFrom};
use binread::BinReaderExt;

hive.seek(SeekFrom::Start(offset.0.into()))?;
let cell: Cell<KeyNodeWithMagic, ()> = hive.read_le().unwrap();
let my_node: KeyNode = {
    let knwm: KeyNodeWithMagic = cell.into();
    knwm.into()
};

For conveniance reasons, Hive already presents the method read_structure, which does basically the same.

Implementations§

source§

impl<T, A> Cell<T, A>
where T: BinRead<Args = A>, A: Any + Copy,

source

pub fn is_deleted(&self) -> bool

returns true iff the Cell is considered as being deleted

source

pub fn is_allocated(&self) -> bool

returns true iff the Cell is considered as being allocated. This is a conveniance function which simply calls is_deleted and negates the result.

source

pub fn data(&self) -> &T

returns a reference to the contained data structure

Trait Implementations§

source§

impl<T, A: Any + Copy> BinRead for Cell<T, A>
where T: BinRead<Args = A>,

§

type Args = A

The type of arguments needed to be supplied in order to read this type, usually a tuple. Read more
source§

fn read_options<R: Read + Seek>( __binread_generated_var_reader: &mut R, __binread_generated_var_options: &ReadOptions, __binread_generated_var_arguments: Self::Args ) -> BinResult<Self>

Read the type from the reader
source§

fn read<R>(reader: &mut R) -> Result<Self, Error>
where R: Read + Seek,

Read the type from the reader while assuming no arguments have been passed Read more
source§

fn read_args<R>(reader: &mut R, args: Self::Args) -> Result<Self, Error>
where R: Read + Seek,

Read the type from the reader using the specified arguments
source§

fn after_parse<R>( &mut self, _: &mut R, _: &ReadOptions, _: Self::Args ) -> Result<(), Error>
where R: Read + Seek,

source§

fn args_default() -> Option<Self::Args>

The default arguments to be used when using the read shortcut method. Override this for any type that optionally requries arguments
source§

impl<T, A: Debug + Any + Copy> Debug for Cell<T, A>
where T: BinRead<Args = A> + Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<Cell<KeyNodeWithMagic, ()>> for KeyNodeWithMagic

source§

fn from(cell: Cell<KeyNodeWithMagic, ()>) -> Self

Converts to this type from the input type.
source§

impl From<Cell<KeyValueWithMagic, ()>> for KeyValue

source§

fn from(cell: Cell<KeyValueWithMagic, ()>) -> Self

Converts to this type from the input type.
source§

impl<T, A: PartialEq + Any + Copy> PartialEq for Cell<T, A>
where T: BinRead<Args = A> + PartialEq,

source§

fn eq(&self, other: &Cell<T, A>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T, A: Eq + Any + Copy> Eq for Cell<T, A>
where T: BinRead<Args = A> + Eq,

source§

impl<T, A: Any + Copy> StructuralPartialEq for Cell<T, A>
where T: BinRead<Args = A>,

Auto Trait Implementations§

§

impl<T, A> Freeze for Cell<T, A>
where T: Freeze,

§

impl<T, A> RefUnwindSafe for Cell<T, A>
where T: RefUnwindSafe,

§

impl<T, A> Send for Cell<T, A>
where T: Send,

§

impl<T, A> Sync for Cell<T, A>
where T: Sync,

§

impl<T, A> Unpin for Cell<T, A>
where T: Unpin,

§

impl<T, A> UnwindSafe for Cell<T, A>
where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.