pub struct SkillInputValidationRecord {
pub validation_id: String,
pub graph_id: String,
pub call_id: String,
pub skill_name: String,
pub validated_at: SystemTime,
pub valid: bool,
pub errors: Vec<String>,
}Fields§
§validation_id: String§graph_id: String§call_id: String§skill_name: String§validated_at: SystemTime§valid: bool§errors: Vec<String>Trait Implementations§
Source§impl Clone for SkillInputValidationRecord
impl Clone for SkillInputValidationRecord
Source§fn clone(&self) -> SkillInputValidationRecord
fn clone(&self) -> SkillInputValidationRecord
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 SkillInputValidationRecord
impl Debug for SkillInputValidationRecord
Source§impl<'de> Deserialize<'de> for SkillInputValidationRecord
impl<'de> Deserialize<'de> for SkillInputValidationRecord
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<SkillInputValidationRecord, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SkillInputValidationRecord, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SkillInputValidationRecord
impl PartialEq for SkillInputValidationRecord
Source§fn eq(&self, other: &SkillInputValidationRecord) -> bool
fn eq(&self, other: &SkillInputValidationRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SkillInputValidationRecord
impl Serialize for SkillInputValidationRecord
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
impl StructuralPartialEq for SkillInputValidationRecord
Auto Trait Implementations§
impl Freeze for SkillInputValidationRecord
impl RefUnwindSafe for SkillInputValidationRecord
impl Send for SkillInputValidationRecord
impl Sync for SkillInputValidationRecord
impl Unpin for SkillInputValidationRecord
impl UnsafeUnpin for SkillInputValidationRecord
impl UnwindSafe for SkillInputValidationRecord
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