/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ //! Helper to iterate over `OriginFlags` bits. use gecko_bindings::structs::OriginFlags; use gecko_bindings::structs::OriginFlags_Author; use gecko_bindings::structs::OriginFlags_User; use gecko_bindings::structs::OriginFlags_UserAgent; use stylesheets::OriginSet; /// Checks that the values for OriginFlags are the ones we expect. pub fn assert_flags_match() { use stylesheets::origin::*; debug_assert_eq!(OriginFlags_UserAgent.0, OriginSet::ORIGIN_USER_AGENT.bits()); debug_assert_eq!(OriginFlags_Author.0, OriginSet::ORIGIN_AUTHOR.bits()); debug_assert_eq!(OriginFlags_User.0, OriginSet::ORIGIN_USER.bits()); } impl From for OriginSet { fn from(flags: OriginFlags) -> Self { Self::from_bits_truncate(flags.0) } } impl From for OriginFlags { fn from(set: OriginSet) -> Self { OriginFlags(set.bits()) } }