pub struct UnknownTagErrors {
pub errors: Vec<UnknownTagError>,
}Expand description
A collection of unknown tag errors found during parsing.
Fields§
§errors: Vec<UnknownTagError>The list of unknown tag errors.
Implementations§
Trait Implementations§
Source§impl Clone for UnknownTagErrors
impl Clone for UnknownTagErrors
Source§fn clone(&self) -> UnknownTagErrors
fn clone(&self) -> UnknownTagErrors
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 UnknownTagErrors
impl Debug for UnknownTagErrors
Source§impl Default for UnknownTagErrors
impl Default for UnknownTagErrors
Source§fn default() -> UnknownTagErrors
fn default() -> UnknownTagErrors
Returns the “default value” for a type. Read more
Source§impl Display for UnknownTagErrors
impl Display for UnknownTagErrors
Source§impl Error for UnknownTagErrors
impl Error for UnknownTagErrors
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<'a> IntoIterator for &'a UnknownTagErrors
impl<'a> IntoIterator for &'a UnknownTagErrors
Source§type Item = &'a UnknownTagError
type Item = &'a UnknownTagError
The type of the elements being iterated over.
Source§type IntoIter = Iter<'a, UnknownTagError>
type IntoIter = Iter<'a, UnknownTagError>
Which kind of iterator are we turning this into?
Source§fn into_iter(self) -> <&'a UnknownTagErrors as IntoIterator>::IntoIter
fn into_iter(self) -> <&'a UnknownTagErrors as IntoIterator>::IntoIter
Creates an iterator from a value. Read more
Source§impl IntoIterator for UnknownTagErrors
impl IntoIterator for UnknownTagErrors
Source§type Item = UnknownTagError
type Item = UnknownTagError
The type of the elements being iterated over.
Source§type IntoIter = IntoIter<UnknownTagError>
type IntoIter = IntoIter<UnknownTagError>
Which kind of iterator are we turning this into?
Source§fn into_iter(self) -> <UnknownTagErrors as IntoIterator>::IntoIter
fn into_iter(self) -> <UnknownTagErrors as IntoIterator>::IntoIter
Creates an iterator from a value. Read more
Source§impl PartialEq for UnknownTagErrors
impl PartialEq for UnknownTagErrors
impl Eq for UnknownTagErrors
impl StructuralPartialEq for UnknownTagErrors
Auto Trait Implementations§
impl Freeze for UnknownTagErrors
impl RefUnwindSafe for UnknownTagErrors
impl Send for UnknownTagErrors
impl Sync for UnknownTagErrors
impl Unpin for UnknownTagErrors
impl UnwindSafe for UnknownTagErrors
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.