pub struct IndirectInt(pub i64);Expand description
This struct, when pushed, will be serialized as a FlexBufferType::IndirectInt.
It is a signed integer stored by reference in the flexbuffer. This can reduce the
size of vectors and maps containing the IndirectInt.
Tuple Fields§
§0: i64Trait Implementations§
Source§impl Clone for IndirectInt
impl Clone for IndirectInt
Source§fn clone(&self) -> IndirectInt
fn clone(&self) -> IndirectInt
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IndirectInt
impl Debug for IndirectInt
Source§impl PartialEq for IndirectInt
impl PartialEq for IndirectInt
Source§impl Pushable for IndirectInt
impl Pushable for IndirectInt
fn push_to_builder(self, builder: &mut Builder)
impl Copy for IndirectInt
impl Eq for IndirectInt
impl StructuralPartialEq for IndirectInt
Auto Trait Implementations§
impl Freeze for IndirectInt
impl RefUnwindSafe for IndirectInt
impl Send for IndirectInt
impl Sync for IndirectInt
impl Unpin for IndirectInt
impl UnwindSafe for IndirectInt
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more