Struct iri_string::format::CapacityOverflowError
source · [−]pub struct CapacityOverflowError;
Expand description
Output buffer capacity overflow error.
Trait Implementations
sourceimpl Clone for CapacityOverflowError
impl Clone for CapacityOverflowError
sourcefn clone(&self) -> CapacityOverflowError
fn clone(&self) -> CapacityOverflowError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for CapacityOverflowError
impl Debug for CapacityOverflowError
sourceimpl Display for CapacityOverflowError
impl Display for CapacityOverflowError
sourceimpl Error for CapacityOverflowError
impl Error for CapacityOverflowError
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
impl Copy for CapacityOverflowError
Auto Trait Implementations
impl RefUnwindSafe for CapacityOverflowError
impl Send for CapacityOverflowError
impl Sync for CapacityOverflowError
impl Unpin for CapacityOverflowError
impl UnwindSafe for CapacityOverflowError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
sourcefn try_to_string(&self) -> Result<String, TryReserveError>
Available on crate feature alloc
only.
fn try_to_string(&self) -> Result<String, TryReserveError>
alloc
only.ToString::to_string
, but without panic on OOM.