pub struct FieldConfigurationSchemeProjectAssociation {
pub field_configuration_scheme_id: Option<String>,
pub project_id: String,
}
Expand description
FieldConfigurationSchemeProjectAssociation : Associated field configuration scheme and project.
Fields§
§field_configuration_scheme_id: Option<String>
The ID of the field configuration scheme. If the field configuration scheme ID is null
, the operation assigns the default field configuration scheme.
project_id: String
The ID of the project.
Implementations§
Source§impl FieldConfigurationSchemeProjectAssociation
impl FieldConfigurationSchemeProjectAssociation
Sourcepub fn new(project_id: String) -> FieldConfigurationSchemeProjectAssociation
pub fn new(project_id: String) -> FieldConfigurationSchemeProjectAssociation
Associated field configuration scheme and project.
Trait Implementations§
Source§impl Clone for FieldConfigurationSchemeProjectAssociation
impl Clone for FieldConfigurationSchemeProjectAssociation
Source§fn clone(&self) -> FieldConfigurationSchemeProjectAssociation
fn clone(&self) -> FieldConfigurationSchemeProjectAssociation
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 Default for FieldConfigurationSchemeProjectAssociation
impl Default for FieldConfigurationSchemeProjectAssociation
Source§fn default() -> FieldConfigurationSchemeProjectAssociation
fn default() -> FieldConfigurationSchemeProjectAssociation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FieldConfigurationSchemeProjectAssociation
impl<'de> Deserialize<'de> for FieldConfigurationSchemeProjectAssociation
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 FieldConfigurationSchemeProjectAssociation
impl PartialEq for FieldConfigurationSchemeProjectAssociation
Source§fn eq(&self, other: &FieldConfigurationSchemeProjectAssociation) -> bool
fn eq(&self, other: &FieldConfigurationSchemeProjectAssociation) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for FieldConfigurationSchemeProjectAssociation
Auto Trait Implementations§
impl Freeze for FieldConfigurationSchemeProjectAssociation
impl RefUnwindSafe for FieldConfigurationSchemeProjectAssociation
impl Send for FieldConfigurationSchemeProjectAssociation
impl Sync for FieldConfigurationSchemeProjectAssociation
impl Unpin for FieldConfigurationSchemeProjectAssociation
impl UnwindSafe for FieldConfigurationSchemeProjectAssociation
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