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