Struct cdp::page::AppManifestError
[−]
[src]
pub struct AppManifestError<'a> { pub message: Cow<'a, str>, pub critical: i32, pub line: i32, pub column: i32, }
[Experimental] Error while paring app manifest.
Fields
message: Cow<'a, str>
Error message.
critical: i32
If criticial, this is a non-recoverable parse error.
line: i32
Error line.
column: i32
Error column.
Trait Implementations
impl<'a> Clone for AppManifestError<'a>
[src]
fn clone(&self) -> AppManifestError<'a>
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl<'a> Debug for AppManifestError<'a>
[src]
impl<'a> PartialEq for AppManifestError<'a>
[src]
fn eq(&self, __arg_0: &AppManifestError<'a>) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &AppManifestError<'a>) -> bool
[src]
This method tests for !=
.