pub struct ParamReduction {
pub from_problem: String,
pub to_problem: String,
pub from_param: String,
pub to_param: String,
pub param_function: String,
}Expand description
Parameterized reduction between problems.
Fields§
§from_problem: String§to_problem: String§from_param: String§to_param: String§param_function: StringImplementations§
Trait Implementations§
Source§impl Clone for ParamReduction
impl Clone for ParamReduction
Source§fn clone(&self) -> ParamReduction
fn clone(&self) -> ParamReduction
Returns a duplicate 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 ParamReduction
impl RefUnwindSafe for ParamReduction
impl Send for ParamReduction
impl Sync for ParamReduction
impl Unpin for ParamReduction
impl UnsafeUnpin for ParamReduction
impl UnwindSafe for ParamReduction
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