pub struct ValidationReport {
pub resource_count: u8,
pub atom_count: u8,
pub unfetchable: Vec<(String, String)>,
pub invalid_value: Vec<(Atom, String)>,
pub unfetchable_props: Vec<(String, String)>,
pub unfetchable_classes: Vec<(String, String)>,
}
Fields§
§resource_count: u8
§atom_count: u8
§unfetchable: Vec<(String, String)>
§invalid_value: Vec<(Atom, String)>
§unfetchable_props: Vec<(String, String)>
§unfetchable_classes: Vec<(String, String)>
Implementations§
Trait Implementations§
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