Skip to content

Commit

Permalink
profile: make fields public
Browse files Browse the repository at this point in the history
  • Loading branch information
jb55 committed Dec 17, 2023
1 parent d1dc2d3 commit 4f40de4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/profile.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ use crate::ndb_profile::{root_as_ndb_profile_record_unchecked, NdbProfileRecord}
use crate::Transaction;

pub struct ProfileRecord<'a> {
record: NdbProfileRecord<'a>,
primary_key: u64,
transaction: &'a Transaction,
pub record: NdbProfileRecord<'a>,
pub primary_key: u64,
pub transaction: &'a Transaction,
}

impl<'a> ProfileRecord<'a> {
Expand Down

0 comments on commit 4f40de4

Please sign in to comment.