From 2035bba437ffb1fcefc7af3acc8c2d9e18138b6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Sun, 17 Dec 2017 11:57:37 +0200 Subject: [PATCH] Make value of Bitmask public --- gstreamer/src/value.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gstreamer/src/value.rs b/gstreamer/src/value.rs index 4e6f74eca..fcbaa368b 100644 --- a/gstreamer/src/value.rs +++ b/gstreamer/src/value.rs @@ -434,7 +434,7 @@ impl SetValue for FractionRange { } #[derive(Copy, Clone, Debug, Eq, PartialEq, Hash)] -pub struct Bitmask(u64); +pub struct Bitmask(pub u64); impl Bitmask { pub fn new(v: u64) -> Self {