pub struct TestConfigurationReference {
pub id: Option<i32>,
pub name: Option<String>,
}
Expand description
Test Configuration Reference
Fields§
§id: Option<i32>
Id of the configuration
name: Option<String>
Name of the configuration
Implementations§
Trait Implementations§
source§impl Clone for TestConfigurationReference
impl Clone for TestConfigurationReference
source§fn clone(&self) -> TestConfigurationReference
fn clone(&self) -> TestConfigurationReference
Returns a copy 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 TestConfigurationReference
impl Debug for TestConfigurationReference
source§impl Default for TestConfigurationReference
impl Default for TestConfigurationReference
source§fn default() -> TestConfigurationReference
fn default() -> TestConfigurationReference
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TestConfigurationReference
impl<'de> Deserialize<'de> for TestConfigurationReference
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
source§impl PartialEq for TestConfigurationReference
impl PartialEq for TestConfigurationReference
source§fn eq(&self, other: &TestConfigurationReference) -> bool
fn eq(&self, other: &TestConfigurationReference) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TestConfigurationReference
Auto Trait Implementations§
impl Freeze for TestConfigurationReference
impl RefUnwindSafe for TestConfigurationReference
impl Send for TestConfigurationReference
impl Sync for TestConfigurationReference
impl Unpin for TestConfigurationReference
impl UnwindSafe for TestConfigurationReference
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