Struct bevy_assetio_zip::AssetIoZipConfig[][src]

pub struct AssetIoZipConfig {
    pub file_name: String,
}

Configuration resource fro the AssetIoZipPlugin

Fields

file_name: String

The name of the assset bundle file to load from, excluding the extension.

The actual file read will be the filename plus either a .zip or a .bin extension, whichever is present. If the [file_name].zip file is found it will load the file as a normal zip, if the [file_name].bin file is found, it will attempt to load it as an obfuscated zip by first XOR-ing the contents of the file by 0b01010101.

Trait Implementations

impl Clone for AssetIoZipConfig[src]

impl Debug for AssetIoZipConfig[src]

impl Default for AssetIoZipConfig[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CloneAny for T where
    T: Clone + Any

impl<T> Component for T where
    T: 'static + Send + Sync

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

impl<T> From<T> for T[src]

impl<T> FromResources for T where
    T: Default

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Resource for T where
    T: 'static + Send + Sync

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> TypeData for T where
    T: 'static + Send + Sync + Clone

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,