Struct grouper_lib::grouper::Utils

source ·
pub struct Utils;

Implementations§

source§

impl Utils

source

pub fn num_groups(num_students: u16, group_size: u16) -> u16

source

pub fn std_dev(floats: Vec<f32>) -> f32

source

pub fn sort_students(vec_of_students: &Vec<Student>) -> Vec<Student>

source

pub fn group_avgs_map(groups: &GroupsMap) -> HashMap<u16, f32>

source

pub fn group_avgs_vec(map: HashMap<u16, f32>) -> Vec<f32>

source

pub fn send_group_avgs(groups_json: String) -> Result<String, Error>

source

pub fn students_from_json(json_str: &str) -> Result<Vec<Student>, Error>

source

pub fn treemap_to_json( groups: BTreeMap<u16, Vec<Student>> ) -> Result<String, Box<dyn Error>>

source

pub fn groups_from_json( json_str: &str ) -> Result<BTreeMap<u16, Vec<Student>>, Error>

source

pub fn random_assignment( current: u16, students: Vec<Student>, groups_map: GroupsMap, num_groups: u16 ) -> GroupsMap

source

pub fn multi_balance( num_workers: u8, students: Vec<Student>, group_size: u16, target_sd: u8 ) -> BTreeMap<u16, Vec<Student>>

Trait Implementations§

source§

impl Clone for Utils

source§

fn clone(&self) -> Utils

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Utils

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Copy for Utils

Auto Trait Implementations§

§

impl RefUnwindSafe for Utils

§

impl Send for Utils

§

impl Sync for Utils

§

impl Unpin for Utils

§

impl UnwindSafe for Utils

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V