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