pub struct LookupTableEntry {
pub from_values: Vec<i64>,
pub to_value: i64,
}
Fields§
§from_values: Vec<i64>
§to_value: i64
Trait Implementations§
source§impl Clone for LookupTableEntry
impl Clone for LookupTableEntry
source§fn clone(&self) -> LookupTableEntry
fn clone(&self) -> LookupTableEntry
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 moreAuto Trait Implementations§
impl Freeze for LookupTableEntry
impl RefUnwindSafe for LookupTableEntry
impl Send for LookupTableEntry
impl Sync for LookupTableEntry
impl Unpin for LookupTableEntry
impl UnwindSafe for LookupTableEntry
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