Skip to main content

IMapHistory_ReplayCommandReaderMethods

Trait IMapHistory_ReplayCommandReaderMethods 

Source
pub trait IMapHistory_ReplayCommandReaderMethods: IMapHistory_ReplayCommandReader {
    // Provided methods
    fn ctor(self, command_stream_buffer: impl Into<Array<u8>>) { ... }
    fn read_unit(self) -> Unit { ... }
    fn read_unit_by_index(self) -> i32 { ... }
    fn read_unit_item(self, item: impl Into<UnitItem>) { ... }
    fn read_unit_item_list(self, item_list: impl Into<UnitItemList>) { ... }
    fn read_multi_targets(self, targets: impl Into<MapMind_MultiTargets>) { ... }
    fn read_force(self) -> Force_Type { ... }
}

Provided Methods§

Source

fn ctor(self, command_stream_buffer: impl Into<Array<u8>>)

.ctor(::unity::Array<u8>) overload

Source

fn read_unit(self) -> Unit

ReadUnit() overload

Source

fn read_unit_by_index(self) -> i32

ReadUnitByIndex() overload

Source

fn read_unit_item(self, item: impl Into<UnitItem>)

ReadUnitItem(crate::app::unititem::UnitItem) overload

Source

fn read_unit_item_list(self, item_list: impl Into<UnitItemList>)

ReadUnitItemList(crate::app::unititemlist::UnitItemList) overload

Source

fn read_multi_targets(self, targets: impl Into<MapMind_MultiTargets>)

ReadMultiTargets(crate::app::mapmind::MapMind_MultiTargets) overload

Source

fn read_force(self) -> Force_Type

ReadForce() overload

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<__T: IMapHistory_ReplayCommandReader> IMapHistory_ReplayCommandReaderMethods for __T

Available on crate feature app-maphistory only.