pub struct AgentValidationResponse {
pub id: Uuid,
pub request_hash: String,
pub agent_registry: String,
pub agent_id: String,
pub validator_address: String,
pub response: u8,
pub response_uri: Option<String>,
pub response_hash: Option<String>,
pub tag: Option<String>,
pub created_at: DateTime<Utc>,
}Expand description
Validation response from a validator.
Fields§
§id: Uuid§request_hash: String§agent_registry: String§agent_id: String§validator_address: String§response: u8§response_uri: Option<String>§response_hash: Option<String>§tag: Option<String>§created_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for AgentValidationResponse
impl Clone for AgentValidationResponse
Source§fn clone(&self) -> AgentValidationResponse
fn clone(&self) -> AgentValidationResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AgentValidationResponse
impl Debug for AgentValidationResponse
Source§impl<'de> Deserialize<'de> for AgentValidationResponse
impl<'de> Deserialize<'de> for AgentValidationResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<AgentValidationResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<AgentValidationResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for AgentValidationResponse
impl Serialize for AgentValidationResponse
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for AgentValidationResponse
impl RefUnwindSafe for AgentValidationResponse
impl Send for AgentValidationResponse
impl Sync for AgentValidationResponse
impl Unpin for AgentValidationResponse
impl UnsafeUnpin for AgentValidationResponse
impl UnwindSafe for AgentValidationResponse
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