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()