[−][src]Struct screeps::pathfinder::LocalCostMatrix
Methods
impl LocalCostMatrix
[src]
pub fn new() -> Self
[src]
pub fn set(&mut self, x: u8, y: u8, val: u8)
[src]
pub fn get(&self, x: u8, y: u8) -> u8
[src]
pub fn upload(&self) -> CostMatrix<'static>
[src]
Copies all data into an JavaScript CostMatrix for use.
This is slower than as_uploaded
, but much safer.
pub unsafe fn as_uploaded<'a>(&'a self) -> CostMatrix<'a>
[src]
Temporarily exposes the bits of this matrix as a cost matrix.
Unsafety
There are two main invariants you must uphold after using this function:
-
The
CostMatrix
can only be used in JS code as long as thisLocalCostMatrix
is alive. Doing otherwise will result in undefined behavior, mainly JS being allowed to read/ manipulate uninitialized rust memory or rust memory that's been repurposed. -
The
set
method of the cost matrix must not be used - it must be read only. This takes &self, but technically allows mutation of the inner Vec via JavaScript access. You should not use this method, or you will invoke Rust undefined behavior.
The CostMatrix returned will reference the internal data of this LocalCostMatrix
.
Trait Implementations
impl Default for LocalCostMatrix
[src]
impl Clone for LocalCostMatrix
[src]
fn clone(&self) -> LocalCostMatrix
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Into<Vec<u8>> for LocalCostMatrix
[src]
fn into(self) -> Vec<u8>
[src]
Returns a vector of bits length 2500, where each position is
idx = ((x * 50) + y)
.
impl Debug for LocalCostMatrix
[src]
impl Serialize for LocalCostMatrix
[src]
impl<'de> Deserialize<'de> for LocalCostMatrix
[src]
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
D: Deserializer<'de>,
Auto Trait Implementations
impl Send for LocalCostMatrix
impl Sync for LocalCostMatrix
Blanket Implementations
impl<T, U> IntoExpectedType for T where
U: FromExpectedType<T>,
[src]
U: FromExpectedType<T>,
fn into_expected_type(Self) -> Result<U, ConversionError>
[src]
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,