[][src]Struct aiven_rs::service::types_service::ServiceIntegration

pub struct ServiceIntegration {
    pub active: bool,
    pub description: String,
    pub dest_endpoint: String,
    pub dest_endpoint_id: String,
    pub dest_project: String,
    pub dest_service: String,
    pub dest_service_type: String,
    pub enabled: bool,
    pub integration_status: HashMap<String, Value>,
    pub integration_type: String,
    pub service_integration_id: String,
    pub source_endpoint: String,
    pub source_endpoint_id: String,
    pub source_project: String,
    pub source_service: String,
    pub source_service_type: String,
    pub user_config: HashMap<String, Value>,
}

Fields

active: booldescription: Stringdest_endpoint: Stringdest_endpoint_id: Stringdest_project: Stringdest_service: Stringdest_service_type: Stringenabled: boolintegration_status: HashMap<String, Value>integration_type: Stringservice_integration_id: Stringsource_endpoint: Stringsource_endpoint_id: Stringsource_project: Stringsource_service: Stringsource_service_type: Stringuser_config: HashMap<String, Value>

Trait Implementations

impl Debug for ServiceIntegration[src]

impl Default for ServiceIntegration[src]

impl<'de> Deserialize<'de> for ServiceIntegration[src]

impl Serialize for ServiceIntegration[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,