mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-01-23 13:10:19 +00:00
add #[doc(hidden)] to __SalsaQueryDescriptor
This commit is contained in:
parent
827828d6b5
commit
38dff4784d
1 changed files with 2 additions and 6 deletions
|
@ -523,13 +523,9 @@ macro_rules! database_storage {
|
||||||
)*
|
)*
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Identifies a query and its key. You are not meant to name
|
/// Identifies a query and its key.
|
||||||
/// this type directly or use its fields etc. It is a
|
|
||||||
/// **private query descriptor type generated by salsa** and
|
|
||||||
/// its exact structure is subject to change. Sadly, I don't
|
|
||||||
/// know any way to hide this with hygiene, so use `__`
|
|
||||||
/// instead.
|
|
||||||
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
|
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
|
||||||
|
#[doc(hidden)]
|
||||||
$v struct __SalsaQueryDescriptor {
|
$v struct __SalsaQueryDescriptor {
|
||||||
kind: __SalsaQueryDescriptorKind
|
kind: __SalsaQueryDescriptorKind
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue