rust/syn/gen/hash.rs
Source file repositories/reference/linux-study-clean/rust/syn/gen/hash.rs
File Facts
- System
- Linux kernel
- Corpus path
rust/syn/gen/hash.rs- Extension
.rs- Size
- 76985 bytes
- Lines
- 2879
- Domain
- Rust Kernel Layer
- Bucket
- Rust API Membrane
- Inferred role
- Rust Kernel Layer: implementation source
- Status
- source implementation candidate
Why This File Exists
Rust-side wrappers and abstractions around kernel C APIs, ownership contracts, allocation, synchronization, and module integration.
- Rust-side wrappers and abstractions around kernel C APIs, ownership contracts, allocation, synchronization, and module integration.
Dependency Surface
- No C-style include directives detected by the generator.
Detected Declarations
- No top-level syscall, struct, function, initcall, or export declaration detected by the generator.
Annotated Snippet
// SPDX-License-Identifier: Apache-2.0 OR MIT
// This file is @generated by syn-internal-codegen.
// It is not intended for manual editing.
#[cfg(any(feature = "derive", feature = "full"))]
use crate::tt::TokenStreamHelper;
use std::hash::{Hash, Hasher};
#[cfg(any(feature = "derive", feature = "full"))]
#[cfg_attr(docsrs, doc(cfg(feature = "extra-traits")))]
impl Hash for crate::Abi {
fn hash<H>(&self, state: &mut H)
where
H: Hasher,
{
self.name.hash(state);
}
}
#[cfg(any(feature = "derive", feature = "full"))]
#[cfg_attr(docsrs, doc(cfg(feature = "extra-traits")))]
impl Hash for crate::AngleBracketedGenericArguments {
fn hash<H>(&self, state: &mut H)
where
H: Hasher,
{
self.colon2_token.hash(state);
self.args.hash(state);
}
}
#[cfg(feature = "full")]
#[cfg_attr(docsrs, doc(cfg(feature = "extra-traits")))]
impl Hash for crate::Arm {
fn hash<H>(&self, state: &mut H)
where
H: Hasher,
{
self.attrs.hash(state);
self.pat.hash(state);
self.guard.hash(state);
self.body.hash(state);
self.comma.hash(state);
}
}
#[cfg(any(feature = "derive", feature = "full"))]
#[cfg_attr(docsrs, doc(cfg(feature = "extra-traits")))]
impl Hash for crate::AssocConst {
fn hash<H>(&self, state: &mut H)
where
H: Hasher,
{
self.ident.hash(state);
self.generics.hash(state);
self.value.hash(state);
}
}
#[cfg(any(feature = "derive", feature = "full"))]
#[cfg_attr(docsrs, doc(cfg(feature = "extra-traits")))]
impl Hash for crate::AssocType {
fn hash<H>(&self, state: &mut H)
where
H: Hasher,
{
self.ident.hash(state);
self.generics.hash(state);
self.ty.hash(state);
}
}
#[cfg(any(feature = "derive", feature = "full"))]
#[cfg_attr(docsrs, doc(cfg(feature = "extra-traits")))]
impl Hash for crate::AttrStyle {
fn hash<H>(&self, state: &mut H)
where
H: Hasher,
{
match self {
crate::AttrStyle::Outer => {
state.write_u8(0u8);
}
crate::AttrStyle::Inner(_) => {
state.write_u8(1u8);
}
}
}
}
#[cfg(any(feature = "derive", feature = "full"))]
#[cfg_attr(docsrs, doc(cfg(feature = "extra-traits")))]
impl Hash for crate::Attribute {
fn hash<H>(&self, state: &mut H)
where
H: Hasher,
Annotation
- Atlas domain: Rust Kernel Layer / Rust API Membrane.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.