pub struct Curriculum {
pub foundation: Vec<WeightedTriple>,
pub bridges: Vec<WeightedTriple>,
pub periphery: Vec<WeightedTriple>,
}Expand description
A curriculum-ordered sequence of triples.
Fields§
§foundation: Vec<WeightedTriple>§bridges: Vec<WeightedTriple>§periphery: Vec<WeightedTriple>Implementations§
Source§impl Curriculum
impl Curriculum
Trait Implementations§
Source§impl Clone for Curriculum
impl Clone for Curriculum
Source§fn clone(&self) -> Curriculum
fn clone(&self) -> Curriculum
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 moreSource§impl Debug for Curriculum
impl Debug for Curriculum
Auto Trait Implementations§
impl Freeze for Curriculum
impl RefUnwindSafe for Curriculum
impl Send for Curriculum
impl Sync for Curriculum
impl Unpin for Curriculum
impl UnwindSafe for Curriculum
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