pub struct UnclosedQuotesError<'a>(pub &'a str);
Expand description
String has unbalanced '
or "
quotation marks
Tuple Fields§
§0: &'a str
Trait Implementations§
Source§impl<'a> Clone for UnclosedQuotesError<'a>
impl<'a> Clone for UnclosedQuotesError<'a>
Source§fn clone(&self) -> UnclosedQuotesError<'a>
fn clone(&self) -> UnclosedQuotesError<'a>
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<'a> Debug for UnclosedQuotesError<'a>
impl<'a> Debug for UnclosedQuotesError<'a>
Source§impl<'a> From<UnclosedQuotesError<'a>> for CssImageParseError<'a>
impl<'a> From<UnclosedQuotesError<'a>> for CssImageParseError<'a>
Source§fn from(err: UnclosedQuotesError<'a>) -> Self
fn from(err: UnclosedQuotesError<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<UnclosedQuotesError<'a>> for CssStyleFontFamilyParseError<'a>
impl<'a> From<UnclosedQuotesError<'a>> for CssStyleFontFamilyParseError<'a>
Source§fn from(err: UnclosedQuotesError<'a>) -> Self
fn from(err: UnclosedQuotesError<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a> Hash for UnclosedQuotesError<'a>
impl<'a> Hash for UnclosedQuotesError<'a>
Source§impl<'a> Ord for UnclosedQuotesError<'a>
impl<'a> Ord for UnclosedQuotesError<'a>
Source§fn cmp(&self, other: &UnclosedQuotesError<'a>) -> Ordering
fn cmp(&self, other: &UnclosedQuotesError<'a>) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<'a> PartialEq for UnclosedQuotesError<'a>
impl<'a> PartialEq for UnclosedQuotesError<'a>
Source§impl<'a> PartialOrd for UnclosedQuotesError<'a>
impl<'a> PartialOrd for UnclosedQuotesError<'a>
impl<'a> Copy for UnclosedQuotesError<'a>
impl<'a> Eq for UnclosedQuotesError<'a>
impl<'a> StructuralPartialEq for UnclosedQuotesError<'a>
Auto Trait Implementations§
impl<'a> Freeze for UnclosedQuotesError<'a>
impl<'a> RefUnwindSafe for UnclosedQuotesError<'a>
impl<'a> Send for UnclosedQuotesError<'a>
impl<'a> Sync for UnclosedQuotesError<'a>
impl<'a> Unpin for UnclosedQuotesError<'a>
impl<'a> UnwindSafe for UnclosedQuotesError<'a>
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