summaryrefslogtreecommitdiff
path: root/rust/pin-init
AgeCommit message (Expand)AuthorFilesLines
2026-05-29rust: pin_init: internal: use `loop {}` to produce never valueGary Guo1-1/+1
2026-05-29rust: pin-init: remove `E` from `InitClosure`Gary Guo1-3/+3
2026-05-29rust: pin-init: move `InitClosure` out from `__internal`Gary Guo2-32/+32
2026-05-29rust: pin-init: docs: fix typos in MaybeZeroable documentationXiaobo Liu1-2/+2
2026-05-29rust: pin-init: internal: suppress `non_snake_case` lint in `[pin_]init!`Mirko Adzic1-1/+3
2026-05-29rust: pin-init: internal: suppress `non_snake_case` lint in `#[pin_data]`Mirko Adzic1-2/+10
2026-05-29rust: pin-init: internal: pin_data: filter non-`#[cfg]` attr in generated codeMartin Kletzander1-24/+28
2026-05-18rust: pin-init: internal: project using full slotGary Guo3-10/+9
2026-05-18rust: pin-init: internal: project slots instead of referencesGary Guo4-123/+133
2026-05-18rust: pin-init: internal: make `make_closure` inherent methodsGary Guo3-53/+23
2026-05-18rust: pin-init: internal: use marker on drop guard type for pinned fieldsGary Guo3-44/+68
2026-05-18rust: pin-init: internal: init: handle code blocks earlyGary Guo1-45/+55
2026-05-14rust: pin-init: internal: add `PhantomInvariant` and `PhantomInvariantLifetime`Gary Guo3-21/+59
2026-05-14rust: pin-init: internal: pin_data: add struct to record field infoMohamad Alsadhan1-21/+32
2026-05-14rust: pin-init: internal: pin_data: use closure for `handle_field`Gary Guo1-74/+70
2026-05-11rust: pin-init: examples: fix `useless_borrows_in_formatting` clippy warningGary Guo3-3/+3
2026-05-11rust: pin-init: internal: remove `collect_tuple` polyfill after MSRV bumpGary Guo1-19/+8
2026-05-11rust: pin-init: internal: turn `PhantomPinned` error into warningsGary Guo2-1/+15
2026-05-11rust: pin-init: cleanup workaround for old Rust compilerGary Guo2-24/+3
2026-05-11rust: pin-init: fix badge URL in READMEGary Guo1-1/+1
2026-05-11rust: pin-init: internal: adjust license identifier of `zeroable.rs`Benno Lossin1-1/+1
2026-05-11rust: pin-init: internal: remove redundant `#[pin]` filteringGary Guo1-4/+0
2026-05-11rust: pin-init: internal: add missing where clause to projection typesMohamad Alsadhan1-1/+3
2026-05-11rust: pin-init: extend `impl_zeroable_option` macro to handle genericsMohamad Alsadhan1-15/+14
2026-05-11rust: pin-init: cleanup `Zeroable` and `ZeroableOptions`Mohamad Alsadhan1-23/+23
2026-05-11rust: pin-init: bump minimum Rust version to 1.82Gary Guo7-18/+0
2026-05-11rust: pin-init: examples: mark as `#[inline]` all `From::from()`s for `Error`Alistair Francis1-0/+2
2026-04-30rust: pin-init: fix incorrect accessor reference lifetimeGary Guo2-68/+66
2026-04-30rust: pin-init: internal: move alignment check to `make_field_check`Gary Guo1-41/+37
2026-03-25rust: pin-init: replace `addr_of_mut!` with `&raw mut`Antonio Hickey8-10/+14
2026-03-25rust: pin-init: implement ZeroableOption for NonZero* integer typesHamdan-Khan1-7/+14
2026-03-25rust: pin-init: doc: de-clutter documentation with fake-variadicsGary Guo1-1/+18
2026-03-25rust: pin-init: properly document let binding workaroundBenno Lossin3-6/+20
2026-03-25rust: pin-init: build: simplify use of nightly featuresGary Guo6-10/+7
2026-03-12rust: pin-init: replace shadowed return token by `unsafe`-to-create tokenBenno Lossin2-19/+31
2026-03-06rust: pin-init: internal: init: document load-bearing fact of field accessorsBenno Lossin1-0/+8
2026-03-06rust: pin-init: internal: init: remove `#[disable_initialized_field_access]`Benno Lossin1-31/+8
2026-02-22Merge tag 'rust-fixes-7.0' of git://git.kernel.org/pub/scm/linux/kernel/git/o...Linus Torvalds1-2/+2
2026-02-19rust: pin-init: replace clippy `expect` with `allow`Benno Lossin1-2/+2
2026-01-17rust: pin-init: Implement `InPlaceWrite<T>` for `&'static mut MaybeUninit<T>`Oleksandr Babak1-0/+27
2026-01-17rust: pin-init: internal: init: simplify Zeroable safety checkBenno Lossin1-6/+1
2026-01-17rust: pin-init: internal: init: add escape hatch for referencing initialized ...Benno Lossin1-23/+52
2026-01-17rust: pin-init: internal: init: add support for attributes on initializer fieldsBenno Lossin1-14/+55
2026-01-17rust: pin-init: add `#[default_error(<type>)]` attribute to initializer macrosBenno Lossin1-3/+41
2026-01-17rust: pin-init: rewrite the initializer macros using `syn`Benno Lossin4-1005/+460
2026-01-17rust: pin-init: add `?Sized` bounds to traits in `#[pin_data]` macroBenno Lossin1-2/+2
2026-01-17rust: pin-init: rewrite `#[pin_data]` using `syn`Benno Lossin4-838/+503
2026-01-17rust: pin-init: rewrite the `#[pinned_drop]` attribute macro using `syn`Benno Lossin3-66/+52
2026-01-17rust: pin-init: rewrite `derive(Zeroable)` and `derive(MaybeZeroable)` using ...Benno Lossin4-216/+74
2026-01-17rust: pin-init: internal: add utility API for syn error handlingBenno Lossin2-0/+33