Struct ImperatorFile

Source
pub struct ImperatorFile<'a> { /* private fields */ }
Expand description

Entrypoint for parsing Imperator saves

Only consumes enough data to determine encoding of the file

Implementations§

Source§

impl<'a> ImperatorFile<'a>

Source

pub fn from_slice(data: &[u8]) -> Result<ImperatorFile<'_>, ImperatorError>

Creates a Imperator file from a slice of data

Source

pub fn encoding(&self) -> Encoding

Returns the detected decoding of the file

Source

pub fn size(&self) -> usize

Returns the size of the file

The size includes the inflated size of the zip

Source

pub fn parse_metadata(&self) -> Result<ImperatorParsedFile<'a>, ImperatorError>

Source

pub fn parse( &self, zip_sink: &'a mut Vec<u8>, ) -> Result<ImperatorParsedFile<'a>, ImperatorError>

Parses the entire file

If the file is a zip, the zip contents will be inflated into the zip sink before being parsed

Auto Trait Implementations§

§

impl<'a> Freeze for ImperatorFile<'a>

§

impl<'a> RefUnwindSafe for ImperatorFile<'a>

§

impl<'a> Send for ImperatorFile<'a>

§

impl<'a> Sync for ImperatorFile<'a>

§

impl<'a> Unpin for ImperatorFile<'a>

§

impl<'a> UnwindSafe for ImperatorFile<'a>

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>,

Source§

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>,

Source§

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.