Skip to content

Commit

Permalink
fix rust check & rerun lints
Browse files Browse the repository at this point in the history
  • Loading branch information
Wumpf committed Dec 19, 2024
1 parent 0531185 commit c561813
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions crates/store/re_log_types/src/path/entity_path_filter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ impl From<EntityPath> for EntityPathRule {
impl std::ops::Deref for EntityPathRule {
type Target = str;

#[inline]
fn deref(&self) -> &Self::Target {
&self.0
}
Expand Down
6 changes: 4 additions & 2 deletions examples/rust/dataframe_query/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use itertools::Itertools;

use rerun::{
dataframe::{
concatenate_record_batches, EntityPathFilter, QueryEngine, QueryExpression,
concatenate_record_batches, EntityPathFilter, EntityPathSubs, QueryEngine, QueryExpression,
SparseFillStrategy, Timeline,
},
ChunkStoreConfig, StoreKind, VersionPolicy,
Expand Down Expand Up @@ -57,7 +57,9 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
filtered_index: Some(timeline),
view_contents: Some(
engine
.iter_entity_paths_sorted(&entity_path_filter)
.iter_entity_paths_sorted(
&entity_path_filter.resolve_forgiving(&EntityPathSubs::default()),
)
.map(|entity_path| (entity_path, None))
.collect(),
),
Expand Down

0 comments on commit c561813

Please sign in to comment.