Serialize layout data

This commit is contained in:
alonso.torres 2025-02-21 14:54:11 +01:00 committed by Alonso Torres
parent b4f6177be7
commit 80d5272248
17 changed files with 1006 additions and 375 deletions

View file

@ -0,0 +1,8 @@
use super::Corners;
use super::Layout;
#[derive(Debug, Clone, PartialEq, Default)]
pub struct Frame {
pub corners: Option<Corners>,
pub layout: Option<Layout>,
}