Move corelib::abi::properties to corelib::properties

And the bits that are only there for the C binding are now in an ffi sub-module.
This commit is contained in:
Simon Hausmann 2020-08-03 17:31:56 +02:00
parent b259a09338
commit 9b13b363c3
8 changed files with 269 additions and 250 deletions

View file

@ -109,7 +109,7 @@ impl<Item, T: Clone, Value: 'static> PropertyInfo<Item, Value>
where
Value: TryInto<T>,
T: TryInto<Value>,
T: crate::abi::properties::InterpolatedPropertyValue,
T: crate::properties::InterpolatedPropertyValue,
{
fn get(&self, item: Pin<&Item>) -> Result<Value, ()> {
self.0.get(item)