pub struct BranchUIState {
pub branch_id: u32,
pub branch_parent: u32,
pub num_columns: usize,
pub current_open: usize,
pub num_filters: usize,
pub last_filter: String,
pub special: String,
pub before_obj: f64,
pub after_obj: Option<f64>,
pub best_obj: f64,
}
Fields§
§branch_id: u32
§branch_parent: u32
§num_columns: usize
§current_open: usize
§num_filters: usize
§last_filter: String
§special: String
§before_obj: f64
§after_obj: Option<f64>
§best_obj: f64
Trait Implementations§
Source§impl Clone for BranchUIState
impl Clone for BranchUIState
Source§fn clone(&self) -> BranchUIState
fn clone(&self) -> BranchUIState
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 BranchUIState
impl RefUnwindSafe for BranchUIState
impl Send for BranchUIState
impl Sync for BranchUIState
impl Unpin for BranchUIState
impl UnwindSafe for BranchUIState
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