pub struct FormError(/* private fields */);
Expand description
A formatting error occured.
This is a generic error for all kinds of error cases that result in data not being accepted. For diagnostics, the error is being given a static string describing the error.
Implementations§
Trait Implementations§
source§impl Error for FormError
impl Error for FormError
1.30.0 · 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()
source§impl From<DnameError> for FormError
impl From<DnameError> for FormError
source§fn from(err: DnameError) -> FormError
fn from(err: DnameError) -> FormError
Converts to this type from the input type.
source§impl From<FormError> for ParseError
impl From<FormError> for ParseError
source§impl PartialEq for FormError
impl PartialEq for FormError
impl Copy for FormError
impl Eq for FormError
impl StructuralPartialEq for FormError
Auto Trait Implementations§
impl Freeze for FormError
impl RefUnwindSafe for FormError
impl Send for FormError
impl Sync for FormError
impl Unpin for FormError
impl UnwindSafe for FormError
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
source§impl<Source, Target> OctetsInto<Target> for Sourcewhere
Target: OctetsFrom<Source>,
impl<Source, Target> OctetsInto<Target> for Sourcewhere
Target: OctetsFrom<Source>,
type Error = <Target as OctetsFrom<Source>>::Error
source§fn try_octets_into(
self,
) -> Result<Target, <Source as OctetsInto<Target>>::Error>
fn try_octets_into( self, ) -> Result<Target, <Source as OctetsInto<Target>>::Error>
Performs the conversion.
source§fn octets_into(self) -> Target
fn octets_into(self) -> Target
Performs an infallible conversion.