You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
736 B
36 lines
736 B
// default pin_project! is completely safe.
|
|
|
|
::pin_project_lite::pin_project! {
|
|
#[derive(Debug)]
|
|
pub struct DefaultStruct<T, U> {
|
|
#[pin]
|
|
pub pinned: T,
|
|
pub unpinned: U,
|
|
}
|
|
}
|
|
|
|
::pin_project_lite::pin_project! {
|
|
#[project = DefaultStructProj]
|
|
#[project_ref = DefaultStructProjRef]
|
|
#[derive(Debug)]
|
|
pub struct DefaultStructNamed<T, U> {
|
|
#[pin]
|
|
pub pinned: T,
|
|
pub unpinned: U,
|
|
}
|
|
}
|
|
|
|
::pin_project_lite::pin_project! {
|
|
#[project = DefaultEnumProj]
|
|
#[project_ref = DefaultEnumProjRef]
|
|
#[derive(Debug)]
|
|
pub enum DefaultEnum<T, U> {
|
|
Struct {
|
|
#[pin]
|
|
pinned: T,
|
|
unpinned: U,
|
|
},
|
|
Unit,
|
|
}
|
|
}
|