pub struct Shield {
pub mothers: [Figure; 4],
pub daughters: [Figure; 4],
pub nieces: [Figure; 4],
pub witnesses: [Figure; 2],
pub judge: Figure,
}Expand description
地占 shield chart:由 4 母图推出全部派生图。
Fields§
§mothers: [Figure; 4]4 母图(随机起,每图 4 位)。
daughters: [Figure; 4]4 女图 = 母块转置。
nieces: [Figure; 4]4 侄图 = 母/女成对 XOR。
witnesses: [Figure; 2]2 见证 [右, 左] = 侄成对 XOR。
judge: Figure法官 = 两见证 XOR;恒为偶图(GF(2) 奇偶校验定理)。
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Shield
impl RefUnwindSafe for Shield
impl Send for Shield
impl Sync for Shield
impl Unpin for Shield
impl UnsafeUnpin for Shield
impl UnwindSafe for Shield
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