// SPDX-License-Identifier: MIT
usecrate::pos::Pos;/// A parse error produced by the streaming parser.
#[derive(Debug, Clone, PartialEq, Eq, thiserror::Error)]#[error("parse error at {pos:?}: {message}")]pubstructError{pubpos: Pos,
pubmessage: String,
}