Enum ark_api::ml::FixedBufferToStringError
source · [−]pub enum FixedBufferToStringError {
LengthTooLarge {
found: u32,
expected_max: usize,
},
InvalidUtf8(FromUtf8Error),
}
Variants
LengthTooLarge
InvalidUtf8(FromUtf8Error)
Trait Implementations
sourceimpl Clone for FixedBufferToStringError
impl Clone for FixedBufferToStringError
sourcefn clone(&self) -> FixedBufferToStringError
fn clone(&self) -> FixedBufferToStringError
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 FixedBufferToStringError
impl Debug for FixedBufferToStringError
sourceimpl Display for FixedBufferToStringError
impl Display for FixedBufferToStringError
sourceimpl Error for FixedBufferToStringError
impl Error for FixedBufferToStringError
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()
Auto Trait Implementations
impl RefUnwindSafe for FixedBufferToStringError
impl Send for FixedBufferToStringError
impl Sync for FixedBufferToStringError
impl Unpin for FixedBufferToStringError
impl UnwindSafe for FixedBufferToStringError
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