pub struct JustLut<V>(/* private fields */);Expand description
Filters that process V and take only LUT as data.
This restricts V to have a 'static lifetime.
If you want to process V with arbitrary lifetimes instead,
you need to define your own data kind and implement DataT for it.
This type is mostly used for testing.
Trait Implementations§
Auto Trait Implementations§
impl<V> Freeze for JustLut<V>
impl<V> RefUnwindSafe for JustLut<V>where
V: RefUnwindSafe,
impl<V> Send for JustLut<V>where
V: Send,
impl<V> Sync for JustLut<V>where
V: Sync,
impl<V> Unpin for JustLut<V>where
V: Unpin,
impl<V> UnsafeUnpin for JustLut<V>
impl<V> UnwindSafe for JustLut<V>where
V: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more