pub struct PropertyMappingTestResult {
pub result: String,
pub successful: bool,
}
Expand description
PropertyMappingTestResult : Result of a Property-mapping test
Fields§
§result: String
§successful: bool
Implementations§
Source§impl PropertyMappingTestResult
impl PropertyMappingTestResult
Sourcepub fn new(result: String, successful: bool) -> PropertyMappingTestResult
pub fn new(result: String, successful: bool) -> PropertyMappingTestResult
Result of a Property-mapping test
Trait Implementations§
Source§impl Clone for PropertyMappingTestResult
impl Clone for PropertyMappingTestResult
Source§fn clone(&self) -> PropertyMappingTestResult
fn clone(&self) -> PropertyMappingTestResult
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 PropertyMappingTestResult
impl Debug for PropertyMappingTestResult
Source§impl Default for PropertyMappingTestResult
impl Default for PropertyMappingTestResult
Source§fn default() -> PropertyMappingTestResult
fn default() -> PropertyMappingTestResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PropertyMappingTestResult
impl<'de> Deserialize<'de> for PropertyMappingTestResult
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
impl StructuralPartialEq for PropertyMappingTestResult
Auto Trait Implementations§
impl Freeze for PropertyMappingTestResult
impl RefUnwindSafe for PropertyMappingTestResult
impl Send for PropertyMappingTestResult
impl Sync for PropertyMappingTestResult
impl Unpin for PropertyMappingTestResult
impl UnwindSafe for PropertyMappingTestResult
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