Skip to content

Commit 3b84331

Browse files
committed
lints
1 parent 00c2796 commit 3b84331

File tree

5 files changed

+13
-15
lines changed

5 files changed

+13
-15
lines changed

Cargo.lock

-2
Original file line numberDiff line numberDiff line change
@@ -4527,7 +4527,6 @@ dependencies = [
45274527
"re_log",
45284528
"re_log_encoding",
45294529
"re_log_types",
4530-
"re_query",
45314530
"re_query2",
45324531
"re_smart_channel",
45334532
"re_tracing",
@@ -5317,7 +5316,6 @@ dependencies = [
53175316
"re_log_encoding",
53185317
"re_log_types",
53195318
"re_memory",
5320-
"re_query",
53215319
"re_query2",
53225320
"re_renderer",
53235321
"re_sdk_comms",

crates/viewer/re_space_view/src/query.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ use crate::results_ext::{HybridLatestAtResults, HybridRangeResults};
1818
/// - Fallback from the visualizer
1919
/// - Placeholder from the component.
2020
///
21-
/// Data should be accessed via the [`crate::RangeResultsExt`] trait which is implemented for
22-
/// [`crate::HybridResults`].
21+
/// Data should be accessed via the [`crate::RangeResultsExt2`] trait which is implemented for
22+
/// [`crate::HybridResults2`].
2323
pub fn range_with_blueprint_resolved_data(
2424
ctx: &ViewContext<'_>,
2525
_annotations: Option<&re_viewer_context::Annotations>,
@@ -70,8 +70,8 @@ pub fn range_with_blueprint_resolved_data(
7070
/// - Fallback from the visualizer
7171
/// - Placeholder from the component.
7272
///
73-
/// Data should be accessed via the [`crate::RangeResultsExt`] trait which is implemented for
74-
/// [`crate::HybridResults`].
73+
/// Data should be accessed via the [`crate::RangeResultsExt2`] trait which is implemented for
74+
/// [`crate::HybridResults2`].
7575
///
7676
/// If `query_shadowed_defaults` is true, all defaults will be queried, even if they are not used.
7777
pub fn latest_at_with_blueprint_resolved_data<'a>(

crates/viewer/re_space_view/src/query2.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ use crate::results_ext2::{HybridLatestAtResults, HybridRangeResults};
1919
/// - Fallback from the visualizer
2020
/// - Placeholder from the component.
2121
///
22-
/// Data should be accessed via the [`crate::RangeResultsExt`] trait which is implemented for
23-
/// [`crate::HybridResults`].
22+
/// Data should be accessed via the [`crate::RangeResultsExt2`] trait which is implemented for
23+
/// [`crate::HybridResults2`].
2424
pub fn range_with_blueprint_resolved_data(
2525
ctx: &ViewContext<'_>,
2626
_annotations: Option<&re_viewer_context::Annotations>,
@@ -71,8 +71,8 @@ pub fn range_with_blueprint_resolved_data(
7171
/// - Fallback from the visualizer
7272
/// - Placeholder from the component.
7373
///
74-
/// Data should be accessed via the [`crate::RangeResultsExt`] trait which is implemented for
75-
/// [`crate::HybridResults`].
74+
/// Data should be accessed via the [`crate::RangeResultsExt2`] trait which is implemented for
75+
/// [`crate::HybridResults2`].
7676
///
7777
/// If `query_shadowed_defaults` is true, all defaults will be queried, even if they are not used.
7878
pub fn latest_at_with_blueprint_resolved_data<'a>(

crates/viewer/re_space_view/src/results_ext.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use crate::DataResultQuery as _;
1515

1616
/// Wrapper that contains the results of a latest-at query with possible overrides.
1717
///
18-
/// Although overrides are never temporal, when accessed via the [`crate::RangeResultsExt`] trait
18+
/// Although overrides are never temporal, when accessed via the [`crate::RangeResultsExt2`] trait
1919
/// they will be merged into the results appropriately.
2020
pub struct HybridLatestAtResults<'a> {
2121
pub overrides: LatestAtResults,
@@ -29,7 +29,7 @@ pub struct HybridLatestAtResults<'a> {
2929

3030
/// Wrapper that contains the results of a range query with possible overrides.
3131
///
32-
/// Although overrides are never temporal, when accessed via the [`crate::RangeResultsExt`] trait
32+
/// Although overrides are never temporal, when accessed via the [`crate::RangeResultsExt2`] trait
3333
/// they will be merged into the results appropriately.
3434
#[derive(Debug)]
3535
pub struct HybridRangeResults {

crates/viewer/re_space_view/src/results_ext2.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ use crate::DataResultQuery2 as _;
1414

1515
/// Wrapper that contains the results of a latest-at query with possible overrides.
1616
///
17-
/// Although overrides are never temporal, when accessed via the [`crate::RangeResultsExt`] trait
17+
/// Although overrides are never temporal, when accessed via the [`crate::RangeResultsExt2`] trait
1818
/// they will be merged into the results appropriately.
1919
pub struct HybridLatestAtResults<'a> {
2020
pub overrides: LatestAtResults,
@@ -28,7 +28,7 @@ pub struct HybridLatestAtResults<'a> {
2828

2929
/// Wrapper that contains the results of a range query with possible overrides.
3030
///
31-
/// Although overrides are never temporal, when accessed via the [`crate::RangeResultsExt`] trait
31+
/// Although overrides are never temporal, when accessed via the [`crate::RangeResultsExt2`] trait
3232
/// they will be merged into the results appropriately.
3333
#[derive(Debug)]
3434
pub struct HybridRangeResults {
@@ -38,7 +38,7 @@ pub struct HybridRangeResults {
3838
}
3939

4040
impl<'a> HybridLatestAtResults<'a> {
41-
/// Returns the [`LatestAtComponentResults`] for the specified [`Component`].
41+
/// Returns the [`UnitChunkShared`] for the specified [`re_types_core::Component`].
4242
#[inline]
4343
pub fn get(&self, component_name: impl Into<ComponentName>) -> Option<&UnitChunkShared> {
4444
let component_name = component_name.into();

0 commit comments

Comments
 (0)