-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
derive(SmartPointer): rewrite bounds in where and generic bounds
- Loading branch information
1 parent
366e558
commit ba5b4eb
Showing
2 changed files
with
286 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
//@ check-pass | ||
|
||
#![feature(derive_smart_pointer)] | ||
|
||
#[derive(core::marker::SmartPointer)] | ||
#[repr(transparent)] | ||
pub struct Ptr<'a, #[pointee] T: OnDrop + ?Sized, X> { | ||
data: &'a mut T, | ||
x: core::marker::PhantomData<X>, | ||
} | ||
|
||
pub trait OnDrop { | ||
fn on_drop(&mut self); | ||
} | ||
|
||
#[derive(core::marker::SmartPointer)] | ||
#[repr(transparent)] | ||
pub struct Ptr2<'a, #[pointee] T: ?Sized, X> | ||
where | ||
T: OnDrop, | ||
{ | ||
data: &'a mut T, | ||
x: core::marker::PhantomData<X>, | ||
} | ||
|
||
pub trait MyTrait<T: ?Sized> {} | ||
|
||
#[derive(core::marker::SmartPointer)] | ||
#[repr(transparent)] | ||
pub struct Ptr3<'a, #[pointee] T: ?Sized, X> | ||
where | ||
T: MyTrait<T>, | ||
{ | ||
data: &'a mut T, | ||
x: core::marker::PhantomData<X>, | ||
} | ||
|
||
#[derive(core::marker::SmartPointer)] | ||
#[repr(transparent)] | ||
pub struct Ptr4<'a, #[pointee] T: MyTrait<T> + ?Sized, X> { | ||
data: &'a mut T, | ||
x: core::marker::PhantomData<X>, | ||
} | ||
|
||
#[derive(core::marker::SmartPointer)] | ||
#[repr(transparent)] | ||
pub struct Ptr5<'a, #[pointee] T: ?Sized, X> | ||
where | ||
Ptr5Companion<T>: MyTrait<T>, | ||
Ptr5Companion2: MyTrait<T>, | ||
{ | ||
data: &'a mut T, | ||
x: core::marker::PhantomData<X>, | ||
} | ||
|
||
pub struct Ptr5Companion<T: ?Sized>(core::marker::PhantomData<T>); | ||
pub struct Ptr5Companion2; | ||
|
||
#[derive(core::marker::SmartPointer)] | ||
#[repr(transparent)] | ||
pub struct Ptr6<'a, #[pointee] T: ?Sized, X: MyTrait<T>> { | ||
data: &'a mut T, | ||
x: core::marker::PhantomData<X>, | ||
} | ||
|
||
// a reduced example from https://lore.kernel.org/all/[email protected]/ | ||
#[repr(transparent)] | ||
#[derive(core::marker::SmartPointer)] | ||
pub struct ListArc<#[pointee] T, const ID: u64 = 0> | ||
where | ||
T: ListArcSafe<ID> + ?Sized, | ||
{ | ||
arc: *const T, | ||
} | ||
|
||
pub trait ListArcSafe<const ID: u64> {} | ||
|
||
fn main() {} |