pub struct CreateAgentValidationResponse {
pub response: u8,
pub response_uri: Option<String>,
pub response_hash: Option<String>,
pub tag: Option<String>,
}Expand description
Input for recording a validation response.
Fields§
§response: u8§response_uri: Option<String>§response_hash: Option<String>§tag: Option<String>Trait Implementations§
Source§impl Clone for CreateAgentValidationResponse
impl Clone for CreateAgentValidationResponse
Source§fn clone(&self) -> CreateAgentValidationResponse
fn clone(&self) -> CreateAgentValidationResponse
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 Default for CreateAgentValidationResponse
impl Default for CreateAgentValidationResponse
Source§fn default() -> CreateAgentValidationResponse
fn default() -> CreateAgentValidationResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateAgentValidationResponse
impl<'de> Deserialize<'de> for CreateAgentValidationResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CreateAgentValidationResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CreateAgentValidationResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for CreateAgentValidationResponse
impl Serialize for CreateAgentValidationResponse
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 CreateAgentValidationResponse
impl RefUnwindSafe for CreateAgentValidationResponse
impl Send for CreateAgentValidationResponse
impl Sync for CreateAgentValidationResponse
impl Unpin for CreateAgentValidationResponse
impl UnsafeUnpin for CreateAgentValidationResponse
impl UnwindSafe for CreateAgentValidationResponse
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