Searched refs:ListLinksSelfPtr (Results 1 – 2 of 2) sorted by relevance
| /linux/rust/kernel/list/ |
| H A D | impl_list_item_mod.rs | 61 /// [`ListLinksSelfPtr<T, ID>`]. 66 /// inside a [`ListLinksSelfPtr<T, ID>`]. 69 /// [`ListLinksSelfPtr<T, ID>`]: crate::list::ListLinksSelfPtr 93 let ptr: *mut $crate::list::ListLinksSelfPtr<$item_type $(, $id)?> = 153 /// links: kernel::list::ListLinksSelfPtr<SimpleListItem>, 161 /// impl ListItem<0> for SimpleListItem { using ListLinksSelfPtr { self.links }; } 165 /// inner: kernel::list::ListLinksSelfPtr<ComplexListItem<T, U>>, 181 /// using ListLinksSelfPtr { self.links.inner }; 256 using ListLinksSelfPtr { sel [all...] |
| /linux/rust/kernel/ |
| H A D | list.rs | 436 pub struct ListLinksSelfPtr<T: ?Sized, const ID: u64 = 0> { struct 447 unsafe impl<T: ?Sized + Send, const ID: u64> Send for ListLinksSelfPtr<T, ID> {} implementation 453 unsafe impl<T: ?Sized + Sync, const ID: u64> Sync for ListLinksSelfPtr<T, ID> {} implementation 455 impl<T: ?Sized, const ID: u64> ListLinksSelfPtr<T, ID> { impl
|