Skip to main content

jessie_lib/layoutinfo/
mod.rs

1///This struct gives info to Jessie for where to place its components.
2pub struct LayoutInfo;
3
4impl LayoutInfo {
5    ///This function is for placing static components on the screen.
6    ///Static components are components that dont have any particular state that they have to follow, for example a Colored rectangle, etc.
7    pub fn put(&mut self) {}
8
9    ///This function is for putting expectations on the screen.
10    /// Expectations are "mini programs" that communicate with the "mini program" that placed them.
11    pub fn expect(&mut self) {}
12}