pub struct ValidationReport {
pub validated_at: Option<String>,
pub features: Option<Vec<String>>,
pub validator_version: Option<String>,
pub total_error: Option<i32>,
pub total_warning: Option<i32>,
pub total_info: Option<i32>,
pub unique_error_count: Option<i32>,
pub unique_warning_count: Option<i32>,
pub unique_info_count: Option<i32>,
pub url_json: Option<String>,
pub url_html: Option<String>,
}Expand description
ValidationReport : Validation report
Fields§
§validated_at: Option<String>The date and time the report was generated, in ISO 8601 date-time format.
features: Option<Vec<String>>List of GTFS features associated to the dataset. More information, https://gtfs.org/getting-started/features/overview
validator_version: Option<String>§total_error: Option<i32>§total_warning: Option<i32>§total_info: Option<i32>§unique_error_count: Option<i32>§unique_warning_count: Option<i32>§unique_info_count: Option<i32>§url_json: Option<String>JSON validation report URL
url_html: Option<String>HTML validation report URL
Implementations§
Source§impl ValidationReport
impl ValidationReport
Sourcepub fn new() -> ValidationReport
pub fn new() -> ValidationReport
Validation report
Trait Implementations§
Source§impl Clone for ValidationReport
impl Clone for ValidationReport
Source§fn clone(&self) -> ValidationReport
fn clone(&self) -> ValidationReport
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 ValidationReport
impl Debug for ValidationReport
Source§impl Default for ValidationReport
impl Default for ValidationReport
Source§fn default() -> ValidationReport
fn default() -> ValidationReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ValidationReport
impl<'de> Deserialize<'de> for ValidationReport
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ValidationReport
impl PartialEq for ValidationReport
Source§impl Serialize for ValidationReport
impl Serialize for ValidationReport
impl StructuralPartialEq for ValidationReport
Auto Trait Implementations§
impl Freeze for ValidationReport
impl RefUnwindSafe for ValidationReport
impl Send for ValidationReport
impl Sync for ValidationReport
impl Unpin for ValidationReport
impl UnwindSafe for ValidationReport
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