pub struct IfsTable {
pub maps: [IfsMap; 4],
}Expand description
A curated figure, fully resolved: four maps in canonical order — index 0 the trunk or dominant map, 1 the main body, 2 the left branch, 3 the right branch.
The order is load-bearing and nothing enforces it. Phase 3 pairs maps by
index when it morphs one figure into another, so a table authored with its
trunk at index 2 morphs that trunk into its partner’s left branch and every
intermediate figure is ugly. This is a comment-and-review property; the
authored tables below each name their four roles.
Fields§
§maps: [IfsMap; 4]The four maps, in canonical order.
Implementations§
Trait Implementations§
impl Copy for IfsTable
impl StructuralPartialEq for IfsTable
Auto Trait Implementations§
impl Freeze for IfsTable
impl RefUnwindSafe for IfsTable
impl Send for IfsTable
impl Sync for IfsTable
impl Unpin for IfsTable
impl UnsafeUnpin for IfsTable
impl UnwindSafe for IfsTable
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