pub struct InvalidParamTextError {
pub index: usize,
pub c: char,
}Expand description
An error indicating that a string is not valid paramtext.
Fields§
§index: usizeThe index of the first invalid character.
c: charThe invalid character.
Trait Implementations§
Source§impl Clone for InvalidParamTextError
impl Clone for InvalidParamTextError
Source§fn clone(&self) -> InvalidParamTextError
fn clone(&self) -> InvalidParamTextError
Returns a duplicate 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 InvalidParamTextError
impl Debug for InvalidParamTextError
Source§impl Display for InvalidParamTextError
impl Display for InvalidParamTextError
Source§impl Error for InvalidParamTextError
impl Error for InvalidParamTextError
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 InvalidParamTextError
impl PartialEq for InvalidParamTextError
impl Copy for InvalidParamTextError
impl Eq for InvalidParamTextError
impl StructuralPartialEq for InvalidParamTextError
Auto Trait Implementations§
impl Freeze for InvalidParamTextError
impl RefUnwindSafe for InvalidParamTextError
impl Send for InvalidParamTextError
impl Sync for InvalidParamTextError
impl Unpin for InvalidParamTextError
impl UnsafeUnpin for InvalidParamTextError
impl UnwindSafe for InvalidParamTextError
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