pub struct PayloadProbeError {
pub line: usize,
pub column: usize,
pub message: String,
}Expand description
A syntax problem found while probe-validating a step payload (1-based line/column within the payload text; the pack loader maps it onto the pack file).
Fields§
§line: usize1-based line within the payload text.
column: usize1-based column within that line.
message: StringParser message.
Trait Implementations§
Source§impl Clone for PayloadProbeError
impl Clone for PayloadProbeError
Source§fn clone(&self) -> PayloadProbeError
fn clone(&self) -> PayloadProbeError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PayloadProbeError
impl Debug for PayloadProbeError
impl Eq for PayloadProbeError
Source§impl PartialEq for PayloadProbeError
impl PartialEq for PayloadProbeError
impl StructuralPartialEq for PayloadProbeError
Auto Trait Implementations§
impl Freeze for PayloadProbeError
impl RefUnwindSafe for PayloadProbeError
impl Send for PayloadProbeError
impl Sync for PayloadProbeError
impl Unpin for PayloadProbeError
impl UnsafeUnpin for PayloadProbeError
impl UnwindSafe for PayloadProbeError
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.