pub struct InplaceMapping {
pub pos_input: usize,
pub pos_output: usize,
}
Expand description
Simply indicate the output that can be replaced by the input.
Fields§
§pos_input: usize
Input position.
pos_output: usize
Output position.
Implementations§
Trait Implementations§
Source§impl Clone for InplaceMapping
impl Clone for InplaceMapping
Source§fn clone(&self) -> InplaceMapping
fn clone(&self) -> InplaceMapping
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for InplaceMapping
impl Debug for InplaceMapping
Source§impl Default for InplaceMapping
impl Default for InplaceMapping
Source§fn default() -> InplaceMapping
fn default() -> InplaceMapping
Returns the “default value” for a type. Read more
Source§impl Hash for InplaceMapping
impl Hash for InplaceMapping
Source§impl PartialEq for InplaceMapping
impl PartialEq for InplaceMapping
impl Eq for InplaceMapping
impl StructuralPartialEq for InplaceMapping
Auto Trait Implementations§
impl Freeze for InplaceMapping
impl RefUnwindSafe for InplaceMapping
impl Send for InplaceMapping
impl Sync for InplaceMapping
impl Unpin for InplaceMapping
impl UnwindSafe for InplaceMapping
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