File tree Expand file tree Collapse file tree 8 files changed +8
-2
lines changed Expand file tree Collapse file tree 8 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ impl<'a> streaming_iterator::StreamingIterator for EdgeTableRowView<'a> {
145
145
#[ repr( transparent) ]
146
146
#[ derive( Debug ) ]
147
147
pub struct EdgeTable {
148
- pub ( crate ) table_ : sys:: LLEdgeTableRef ,
148
+ table_ : sys:: LLEdgeTableRef ,
149
149
}
150
150
151
151
impl EdgeTable {
Original file line number Diff line number Diff line change @@ -101,6 +101,7 @@ impl<'a> streaming_iterator::StreamingIterator for IndividualTableRowView<'a> {
101
101
/// by types implementing [`std::ops::Deref`] to
102
102
/// [`crate::table_views::TableViews`]
103
103
#[ derive( Debug ) ]
104
+ #[ repr( transparent) ]
104
105
pub struct IndividualTable {
105
106
table_ : sys:: LLIndividualTableRef ,
106
107
}
Original file line number Diff line number Diff line change @@ -163,6 +163,7 @@ impl<'a> streaming_iterator::StreamingIterator for MigrationTableRowView<'a> {
163
163
/// by types implementing [`std::ops::Deref`] to
164
164
/// [`crate::table_views::TableViews`]
165
165
#[ derive( Debug ) ]
166
+ #[ repr( transparent) ]
166
167
pub struct MigrationTable {
167
168
table_ : sys:: LLMigrationTableRef ,
168
169
}
Original file line number Diff line number Diff line change @@ -160,6 +160,7 @@ impl<'a> streaming_iterator::StreamingIterator for MutationTableRowView<'a> {
160
160
/// by types implementing [`std::ops::Deref`] to
161
161
/// [`crate::table_views::TableViews`]
162
162
#[ derive( Debug ) ]
163
+ #[ repr( transparent) ]
163
164
pub struct MutationTable {
164
165
table_ : sys:: LLMutationTableRef ,
165
166
}
Original file line number Diff line number Diff line change @@ -144,6 +144,7 @@ impl<'a> streaming_iterator::StreamingIterator for NodeTableRowView<'a> {
144
144
/// by types implementing [`std::ops::Deref`] to
145
145
/// [`crate::table_views::TableViews`]
146
146
#[ derive( Debug ) ]
147
+ #[ repr( transparent) ]
147
148
pub struct NodeTable {
148
149
table_ : sys:: LLNodeTableRef ,
149
150
}
Original file line number Diff line number Diff line change @@ -137,6 +137,7 @@ impl<'a> streaming_iterator::StreamingIterator for ProvenanceTableRowView<'a> {
137
137
/// * The type is enabled by the `"provenance"` feature.
138
138
///
139
139
#[ derive( Debug ) ]
140
+ #[ repr( transparent) ]
140
141
pub struct ProvenanceTable {
141
142
table_ : sys:: LLProvenanceTableRef ,
142
143
}
Original file line number Diff line number Diff line change @@ -130,6 +130,7 @@ impl<'a> streaming_iterator::StreamingIterator for SiteTableRowView<'a> {
130
130
/// by types implementing [`std::ops::Deref`] to
131
131
/// [`crate::table_views::TableViews`]
132
132
#[ derive( Debug ) ]
133
+ #[ repr( transparent) ]
133
134
pub struct SiteTable {
134
135
table_ : sys:: LLSiteTableRef ,
135
136
}
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ impl TableCollection {
109
109
// AHA?
110
110
assert ! ( std:: ptr:: eq(
111
111
& mbox. as_ref( ) . edges as * const ll_bindings:: tsk_edge_table_t,
112
- views. edges( ) . table_ . as_ref( ) as * const ll_bindings:: tsk_edge_table_t
112
+ views. edges( ) . as_ref( ) as * const ll_bindings:: tsk_edge_table_t
113
113
) ) ;
114
114
let mut tables = Self {
115
115
inner : mbox,
You can’t perform that action at this time.
0 commit comments