Trait artichoke_backend::prelude::ConvertMut
source · [−]pub trait ConvertMut<T, U> {
fn convert_mut(&mut self, from: T) -> U;
}
Expand description
Mutable infallible conversion between two types.
Implementors may allocate on the interpreter heap.
See core::convert::From
.
See Convert
.
Required Methods
fn convert_mut(&mut self, from: T) -> U
fn convert_mut(&mut self, from: T) -> U
Performs the infallible conversion.