pub struct DecimalBuilder<'a, 'b>where
'a: 'b,{ /* private fields */ }
Implementations§
Source§impl<'a, 'b> DecimalBuilder<'a, 'b>where
'a: 'b,
impl<'a, 'b> DecimalBuilder<'a, 'b>where
'a: 'b,
pub fn add_precision(&mut self, precision: i32)
pub fn add_scale(&mut self, scale: i32)
pub fn add_bitWidth(&mut self, bitWidth: i32)
pub fn new(_fbb: &'b mut FlatBufferBuilder<'a>) -> DecimalBuilder<'a, 'b>
pub fn finish(self) -> WIPOffset<Decimal<'a>>
Auto Trait Implementations§
impl<'a, 'b> Freeze for DecimalBuilder<'a, 'b>
impl<'a, 'b> RefUnwindSafe for DecimalBuilder<'a, 'b>
impl<'a, 'b> Send for DecimalBuilder<'a, 'b>
impl<'a, 'b> Sync for DecimalBuilder<'a, 'b>
impl<'a, 'b> Unpin for DecimalBuilder<'a, 'b>
impl<'a, 'b> !UnwindSafe for DecimalBuilder<'a, 'b>
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more