pub enum LocatorError {
TruncatedHeader,
TruncatedString,
InvalidUtf8,
PathTooLong,
}Expand description
Error during encode/decode.
Variants§
TruncatedHeader
Buffer too short for the fixed header (16 byte).
TruncatedString
String length prefix does not fit the buffer.
InvalidUtf8
Path contains non-UTF-8.
PathTooLong
Path too long (> 256 byte as a DoS cap).
Trait Implementations§
Source§impl Clone for LocatorError
impl Clone for LocatorError
Source§fn clone(&self) -> LocatorError
fn clone(&self) -> LocatorError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LocatorError
impl Debug for LocatorError
Source§impl Display for LocatorError
impl Display for LocatorError
impl Eq for LocatorError
Source§impl Error for LocatorError
Available on crate feature std only.
impl Error for LocatorError
Available on crate feature
std only.1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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()
Source§impl PartialEq for LocatorError
impl PartialEq for LocatorError
Source§fn eq(&self, other: &LocatorError) -> bool
fn eq(&self, other: &LocatorError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LocatorError
Auto Trait Implementations§
impl Freeze for LocatorError
impl RefUnwindSafe for LocatorError
impl Send for LocatorError
impl Sync for LocatorError
impl Unpin for LocatorError
impl UnsafeUnpin for LocatorError
impl UnwindSafe for LocatorError
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