Skip to main content

Vector

Struct Vector 

Source
pub struct Vector<T: TokenList, S = DefaultAnalyst> { /* private fields */ }

Implementations§

Source§

impl<T: TokenList> Vector<T, DefaultAnalyst>

Source

pub fn new( allocation_size: usize, window_size: usize, user_data: T::UserData, ) -> Result<Self, T::Error>

Source§

impl<T: TokenList, S: Analyst> Vector<T, S>

Source

pub fn new_with_analyst( analyst: S, user_data: T::UserData, ) -> Result<Self, T::Error>

Source

pub fn get_token(&mut self) -> Result<(&mut T, usize), T::Error>

Source

pub fn get_vector(&mut self) -> Vec<&mut T>

Source

pub fn tick(&mut self) -> Result<(), T::Error>

Trait Implementations§

Source§

impl<T: Debug + TokenList, S: Debug> Debug for Vector<T, S>
where T::UserData: Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<T, S> Freeze for Vector<T, S>
where S: Freeze, <T as TokenList>::UserData: Freeze,

§

impl<T, S> RefUnwindSafe for Vector<T, S>

§

impl<T, S> Send for Vector<T, S>
where S: Send, <T as TokenList>::UserData: Send, T: Send,

§

impl<T, S> Sync for Vector<T, S>
where S: Sync, <T as TokenList>::UserData: Sync, T: Sync,

§

impl<T, S> Unpin for Vector<T, S>
where S: Unpin, <T as TokenList>::UserData: Unpin, T: Unpin,

§

impl<T, S> UnsafeUnpin for Vector<T, S>

§

impl<T, S> UnwindSafe for Vector<T, S>

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.