[][src]Trait gridly::prelude::GridMut

pub trait GridMut: Grid {
#[must_use]
    unsafe fn get_unchecked_mut(
        &mut self,
        location: &Location
    ) -> &mut Self::Item; fn get_mut(
        &mut self,
        location: impl LocationLike
    ) -> Result<&mut Self::Item, BoundsError> { ... } }

Required methods

#[must_use] unsafe fn get_unchecked_mut(&mut self, location: &Location) -> &mut Self::Item

Loading content...

Provided methods

fn get_mut(
    &mut self,
    location: impl LocationLike
) -> Result<&mut Self::Item, BoundsError>

Loading content...

Implementations on Foreign Types

impl<'_, G: GridMut> GridMut for &'_ mut G[src]

Loading content...

Implementors

Loading content...