pub struct ValidationMetadata {
pub url_format_valid: bool,
pub domain_verified: bool,
pub profile_pattern_matched: bool,
pub http_status: Option<u16>,
pub error_type: Option<String>,
pub timestamp: String,
}
Expand description
Validation metadata for advanced AI agents
Fields§
§url_format_valid: bool
§domain_verified: bool
§profile_pattern_matched: bool
§http_status: Option<u16>
§error_type: Option<String>
§timestamp: String
Trait Implementations§
Source§impl Clone for ValidationMetadata
impl Clone for ValidationMetadata
Source§fn clone(&self) -> ValidationMetadata
fn clone(&self) -> ValidationMetadata
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 ValidationMetadata
impl Debug for ValidationMetadata
Source§impl<'de> Deserialize<'de> for ValidationMetadata
impl<'de> Deserialize<'de> for ValidationMetadata
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
Auto Trait Implementations§
impl Freeze for ValidationMetadata
impl RefUnwindSafe for ValidationMetadata
impl Send for ValidationMetadata
impl Sync for ValidationMetadata
impl Unpin for ValidationMetadata
impl UnwindSafe for ValidationMetadata
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