-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
a2d5819
commit dd508f4
Showing
2 changed files
with
261 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,69 @@ | ||
//@ 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>, | ||
{ | ||
data: &'a mut T, | ||
x: core::marker::PhantomData<X>, | ||
} | ||
|
||
pub struct Ptr5Companion<T: ?Sized>(core::marker::PhantomData<T>); | ||
|
||
// a reduced example from https://lore.kernel.org/all/20240402-linked-list-v1-1-b1c59ba7ae3b@google.com/ | ||
#[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() {} |