pub type LayoutResult = Result<(), LayoutError>;
pub enum LayoutResult { Ok(()), Err(LayoutError), }
Contains the success value
Contains the error value