pub enum LocatorError {
TruncatedHeader,
TruncatedString,
InvalidUtf8,
PathTooLong,
}Expand description
Fehler beim Encode/Decode.
Variants§
TruncatedHeader
Buffer zu kurz fuer den fixen Header (16 byte).
TruncatedString
String-Length-Prefix passt nicht zum Buffer.
InvalidUtf8
Path enthaelt Non-UTF-8.
PathTooLong
Path zu lang (> 256 byte als 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
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 Eq for LocatorError
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