rusticl/util: make Properties::props private

Reviewed-by: @LingMan
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/32268>
This commit is contained in:
Karol Herbst 2024-11-27 15:43:18 +01:00 committed by Marge Bot
parent b4b01498a6
commit 237f081866

View file

@ -1,5 +1,5 @@
pub struct Properties<T> {
pub props: Vec<(T, T)>,
props: Vec<(T, T)>,
}
impl<T: Copy + Default> Properties<T> {