This commit is contained in:
Louis Dureuil
2025-11-27 11:31:04 +01:00
parent 72dcaee29a
commit e3d5b1025e
4 changed files with 57 additions and 8 deletions

View File

@@ -38,6 +38,10 @@ impl RoFeatures {
Self { runtime }
}
pub fn from_runtime_features(features: RuntimeTogglableFeatures) -> Self {
Self { runtime: features }
}
pub fn runtime_features(&self) -> RuntimeTogglableFeatures {
self.runtime
}