pub struct GbfsValidationReport {
pub validated_at: Option<String>,
pub total_error: Option<i32>,
pub report_summary_url: Option<String>,
pub validator_version: Option<String>,
}Expand description
GbfsValidationReport : A validation report of the GBFS feed.
Fields§
§validated_at: Option<String>The date and time the GBFS feed was validated, in ISO 8601 date-time format.
total_error: Option<i32>§report_summary_url: Option<String>The URL of the JSON report of the validation summary.
validator_version: Option<String>The version of the validator used to validate the GBFS feed.
Implementations§
Source§impl GbfsValidationReport
impl GbfsValidationReport
Sourcepub fn new() -> GbfsValidationReport
pub fn new() -> GbfsValidationReport
A validation report of the GBFS feed.
Trait Implementations§
Source§impl Clone for GbfsValidationReport
impl Clone for GbfsValidationReport
Source§fn clone(&self) -> GbfsValidationReport
fn clone(&self) -> GbfsValidationReport
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 GbfsValidationReport
impl Debug for GbfsValidationReport
Source§impl Default for GbfsValidationReport
impl Default for GbfsValidationReport
Source§fn default() -> GbfsValidationReport
fn default() -> GbfsValidationReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GbfsValidationReport
impl<'de> Deserialize<'de> for GbfsValidationReport
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 GbfsValidationReport
impl PartialEq for GbfsValidationReport
Source§impl Serialize for GbfsValidationReport
impl Serialize for GbfsValidationReport
impl StructuralPartialEq for GbfsValidationReport
Auto Trait Implementations§
impl Freeze for GbfsValidationReport
impl RefUnwindSafe for GbfsValidationReport
impl Send for GbfsValidationReport
impl Sync for GbfsValidationReport
impl Unpin for GbfsValidationReport
impl UnwindSafe for GbfsValidationReport
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