pub struct JavaComponentConfigurationProperty {
pub property_name: Option<String>,
pub value: Option<String>,
}Expand description
Configuration properties for a Java Component
Fields§
§property_name: Option<String>The name of the property
value: Option<String>The value of the property
Implementations§
Trait Implementations§
Source§impl Clone for JavaComponentConfigurationProperty
impl Clone for JavaComponentConfigurationProperty
Source§fn clone(&self) -> JavaComponentConfigurationProperty
fn clone(&self) -> JavaComponentConfigurationProperty
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 JavaComponentConfigurationProperty
impl Default for JavaComponentConfigurationProperty
Source§fn default() -> JavaComponentConfigurationProperty
fn default() -> JavaComponentConfigurationProperty
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JavaComponentConfigurationProperty
impl<'de> Deserialize<'de> for JavaComponentConfigurationProperty
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 JavaComponentConfigurationProperty
impl PartialEq for JavaComponentConfigurationProperty
Source§fn eq(&self, other: &JavaComponentConfigurationProperty) -> bool
fn eq(&self, other: &JavaComponentConfigurationProperty) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for JavaComponentConfigurationProperty
Auto Trait Implementations§
impl Freeze for JavaComponentConfigurationProperty
impl RefUnwindSafe for JavaComponentConfigurationProperty
impl Send for JavaComponentConfigurationProperty
impl Sync for JavaComponentConfigurationProperty
impl Unpin for JavaComponentConfigurationProperty
impl UnwindSafe for JavaComponentConfigurationProperty
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