pub struct Null<'a> {
pub _tab: Table<'a>,
}
Expand description
These are stored in the flatbuffer in the Type union below
Fields
_tab: Table<'a>
Implementations
Trait Implementations
sourceimpl Verifiable for Null<'_>
impl Verifiable for Null<'_>
sourcefn run_verifier(
v: &mut Verifier<'_, '_>,
pos: usize
) -> Result<(), InvalidFlatbuffer>
fn run_verifier(
v: &mut Verifier<'_, '_>,
pos: usize
) -> Result<(), InvalidFlatbuffer>
Runs the verifier for this type, assuming its at position pos
in the verifier’s buffer.
Should not need to be called directly. Read more
impl<'a> Copy for Null<'a>
impl<'a> StructuralPartialEq for Null<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for Null<'a>
impl<'a> Send for Null<'a>
impl<'a> Sync for Null<'a>
impl<'a> Unpin for Null<'a>
impl<'a> UnwindSafe for Null<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more