/// Error returned when MapLibre Native rejects a style mutation.
#[derive(Debug, thiserror::Error)]#[non_exhaustive]pubenumStyleError{/// MapLibre Native rejected or failed to apply the style mutation.
#[error("style error: {0}")]
Native(String),}implFrom<cxx::Exception>forStyleError{fnfrom(value:cxx::Exception)->Self{Self::Native(value.to_string())}}