Struct lexical_core::WriteIntegerOptions
source · pub struct WriteIntegerOptions {}
Expand description
Immutable options to customize writing integers.
Examples
use lexical_write_integer::options::Options;
let options = Options::builder()
.build()
.unwrap();
Implementations§
source§impl Options
impl Options
sourcepub const fn builder() -> OptionsBuilder
pub const fn builder() -> OptionsBuilder
Get OptionsBuilder as a static function.
sourcepub const fn rebuild(&self) -> OptionsBuilder
pub const fn rebuild(&self) -> OptionsBuilder
Create OptionsBuilder using existing values.
Trait Implementations§
source§impl Ord for Options
impl Ord for Options
source§impl PartialEq for Options
impl PartialEq for Options
source§impl PartialOrd for Options
impl PartialOrd for Options
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl WriteOptions for Options
impl WriteOptions for Options
source§fn buffer_size<T, const FORMAT: u128>(&self) -> usizewhere
T: FormattedSize,
fn buffer_size<T, const FORMAT: u128>(&self) -> usizewhere T: FormattedSize,
Get an upper bound on the buffer size.
impl Eq for Options
impl StructuralEq for Options
impl StructuralPartialEq for Options
Auto Trait Implementations§
impl RefUnwindSafe for Options
impl Send for Options
impl Sync for Options
impl Unpin for Options
impl UnwindSafe for Options
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