Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Rust] Restore public visibility of previously-public fields #7700

Merged
merged 3 commits into from Dec 8, 2022
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 10 additions & 0 deletions rust/flatbuffers/src/table.rs
Expand Up @@ -25,6 +25,16 @@ pub struct Table<'a> {
}

impl<'a> Table<'a> {
#[inline]
pub fn buf(&self) -> &'a [u8] {
self.buf
}

#[inline]
pub fn loc(&self) -> usize {
self.loc
}

/// # Safety
///
/// `buf` must contain a `soffset_t` at `loc`, which points to a valid vtable
Expand Down