pub enum FullAction {
Split(usize, usize, usize),
Extend(usize),
}Expand description
Type returned by Tuning::full_action.
Variants§
Split(usize, usize, usize)
Vec is to be split at indicated point with the indicated new allocations.
Extend(usize)
Vec is to be extended to indicated length.
Auto Trait Implementations§
impl Freeze for FullAction
impl RefUnwindSafe for FullAction
impl Send for FullAction
impl Sync for FullAction
impl Unpin for FullAction
impl UnsafeUnpin for FullAction
impl UnwindSafe for FullAction
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