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