Enum ark_api::ml::FixedBufferToStringError
source · pub enum FixedBufferToStringError {
LengthTooLarge {
found: u32,
expected_max: usize,
},
InvalidUtf8(FromUtf8Error),
}Variants§
Trait Implementations§
source§impl Clone for FixedBufferToStringError
impl Clone for FixedBufferToStringError
source§fn clone(&self) -> FixedBufferToStringError
fn clone(&self) -> FixedBufferToStringError
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 FixedBufferToStringError
impl Debug for FixedBufferToStringError
source§impl Display for FixedBufferToStringError
impl Display for FixedBufferToStringError
source§impl Error for FixedBufferToStringError
impl Error for FixedBufferToStringError
source§fn 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 · source§fn 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§
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