fern_sim_eojin 0.1.0

Fern simulation, from the cellular level up.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub struct Session;

pub fn connect() -> Session {
    Session
}

impl Session {
    /// Upload all local terrariums to the online gallery.
    ///
    /// ```no_run
    /// let mut session = fern_sim::connect();
    /// session.upload_all();
    /// ```
    pub fn upload_all(&mut self) {
        unimplemented!();
    }
}