pub struct ResolutionMetadata {
pub resolution_time_ms: u64,
pub redirects_followed: u32,
pub ssl_validated: bool,
pub security_warnings: Vec<String>,
pub validation_errors: Vec<String>,
}Expand description
Resource resolution metadata
Fields§
§resolution_time_ms: u64Time taken to resolve resource (in milliseconds)
redirects_followed: u32Number of redirects followed
ssl_validated: boolWhether SSL validation was performed
security_warnings: Vec<String>Security warnings encountered
validation_errors: Vec<String>Validation errors encountered
Trait Implementations§
Source§impl Clone for ResolutionMetadata
impl Clone for ResolutionMetadata
Source§fn clone(&self) -> ResolutionMetadata
fn clone(&self) -> ResolutionMetadata
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 moreAuto Trait Implementations§
impl Freeze for ResolutionMetadata
impl RefUnwindSafe for ResolutionMetadata
impl Send for ResolutionMetadata
impl Sync for ResolutionMetadata
impl Unpin for ResolutionMetadata
impl UnwindSafe for ResolutionMetadata
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