playa_ffmpeg/util/dictionary/
mod.rs

1mod immutable;
2pub use self::immutable::Ref;
3
4mod mutable;
5pub use self::mutable::Ref as Mut;
6
7mod owned;
8pub use self::owned::Owned;
9
10mod iter;
11pub use self::iter::Iter;
12
13#[macro_export]
14macro_rules! dict {
15	( $($key:expr => $value:expr),* $(,)*) => ({
16			let mut dict = $crate::Dictionary::new();
17
18			$(
19				dict.set($key, $value);
20			)*
21
22			dict
23		}
24	);
25}