pub struct BrokerEngineType {
pub engine_type: Option<String>,
pub engine_versions: Option<Vec<EngineVersion>>,
}
Expand description
Types of broker engines.
Fields§
§engine_type: Option<String>
The type of broker engine.
engine_versions: Option<Vec<EngineVersion>>
The list of engine versions.
Trait Implementations§
Source§impl Clone for BrokerEngineType
impl Clone for BrokerEngineType
Source§fn clone(&self) -> BrokerEngineType
fn clone(&self) -> BrokerEngineType
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 BrokerEngineType
impl Debug for BrokerEngineType
Source§impl Default for BrokerEngineType
impl Default for BrokerEngineType
Source§fn default() -> BrokerEngineType
fn default() -> BrokerEngineType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BrokerEngineType
impl<'de> Deserialize<'de> for BrokerEngineType
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 BrokerEngineType
impl PartialEq for BrokerEngineType
impl StructuralPartialEq for BrokerEngineType
Auto Trait Implementations§
impl Freeze for BrokerEngineType
impl RefUnwindSafe for BrokerEngineType
impl Send for BrokerEngineType
impl Sync for BrokerEngineType
impl Unpin for BrokerEngineType
impl UnwindSafe for BrokerEngineType
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