pub enum JavaComponentPropertiesUnion {
Nacos(NacosComponent),
SpringBootAdmin(SpringBootAdminComponent),
SpringCloudConfig(SpringCloudConfigComponent),
SpringCloudEureka(SpringCloudEurekaComponent),
SpringCloudGateway(SpringCloudGatewayComponent),
}Expand description
Type of the Java Component.
Variants§
Nacos(NacosComponent)
SpringBootAdmin(SpringBootAdminComponent)
SpringCloudConfig(SpringCloudConfigComponent)
SpringCloudEureka(SpringCloudEurekaComponent)
SpringCloudGateway(SpringCloudGatewayComponent)
Trait Implementations§
Source§impl Clone for JavaComponentPropertiesUnion
impl Clone for JavaComponentPropertiesUnion
Source§fn clone(&self) -> JavaComponentPropertiesUnion
fn clone(&self) -> JavaComponentPropertiesUnion
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 JavaComponentPropertiesUnion
impl Debug for JavaComponentPropertiesUnion
Source§impl<'de> Deserialize<'de> for JavaComponentPropertiesUnion
impl<'de> Deserialize<'de> for JavaComponentPropertiesUnion
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 JavaComponentPropertiesUnion
impl PartialEq for JavaComponentPropertiesUnion
Source§fn eq(&self, other: &JavaComponentPropertiesUnion) -> bool
fn eq(&self, other: &JavaComponentPropertiesUnion) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for JavaComponentPropertiesUnion
Auto Trait Implementations§
impl Freeze for JavaComponentPropertiesUnion
impl RefUnwindSafe for JavaComponentPropertiesUnion
impl Send for JavaComponentPropertiesUnion
impl Sync for JavaComponentPropertiesUnion
impl Unpin for JavaComponentPropertiesUnion
impl UnwindSafe for JavaComponentPropertiesUnion
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