Skip to main content

Front

Struct Front 

Source
pub struct Front<T: Copy + Default> { /* private fields */ }
Expand description

Circular buffer for the 3D wavefront predictor.

Implementations§

Source§

impl<T: Copy + Default> Front<T>

Source

pub fn new(nx: i32, ny: i32, zero: T) -> Self

Creates a new Front buffer for the given dimensions.

Source

pub fn get(&self, x: i32, y: i32, z: i32) -> T

Fetches a neighbor relative to the current sample position.

Source

pub fn push(&mut self, value: T)

Adds a sample to the front.

Source

pub fn push_n(&mut self, value: T, count: i32)

Adds n copies of a value to the front.

Source

pub fn advance(&mut self, x: i32, y: i32, z: i32)

Advances the front, filling with zeros.

Auto Trait Implementations§

§

impl<T> Freeze for Front<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for Front<T>
where T: RefUnwindSafe,

§

impl<T> Send for Front<T>
where T: Send,

§

impl<T> Sync for Front<T>
where T: Sync,

§

impl<T> Unpin for Front<T>
where T: Unpin,

§

impl<T> UnsafeUnpin for Front<T>
where T: UnsafeUnpin,

§

impl<T> UnwindSafe for Front<T>
where T: UnwindSafe,

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.