pub struct RuntimeIntegrationRecord {
pub id: String,
pub name: String,
pub url: String,
pub category: RuntimeIntegrationCategory,
pub connect_type: RuntimeIntegrationConnectType,
pub auth_mode: Option<String>,
pub credential_schema: Option<Value>,
pub requires_oauth: Option<bool>,
pub connection: Option<RuntimeIntegrationConnection>,
}Fields§
§id: String§name: String§url: String§category: RuntimeIntegrationCategory§connect_type: RuntimeIntegrationConnectType§auth_mode: Option<String>§credential_schema: Option<Value>§requires_oauth: Option<bool>§connection: Option<RuntimeIntegrationConnection>Trait Implementations§
Source§impl Clone for RuntimeIntegrationRecord
impl Clone for RuntimeIntegrationRecord
Source§fn clone(&self) -> RuntimeIntegrationRecord
fn clone(&self) -> RuntimeIntegrationRecord
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 RuntimeIntegrationRecord
impl Debug for RuntimeIntegrationRecord
Source§impl<'de> Deserialize<'de> for RuntimeIntegrationRecord
impl<'de> Deserialize<'de> for RuntimeIntegrationRecord
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 RuntimeIntegrationRecord
impl PartialEq for RuntimeIntegrationRecord
Source§impl Serialize for RuntimeIntegrationRecord
impl Serialize for RuntimeIntegrationRecord
impl StructuralPartialEq for RuntimeIntegrationRecord
Auto Trait Implementations§
impl Freeze for RuntimeIntegrationRecord
impl RefUnwindSafe for RuntimeIntegrationRecord
impl Send for RuntimeIntegrationRecord
impl Sync for RuntimeIntegrationRecord
impl Unpin for RuntimeIntegrationRecord
impl UnsafeUnpin for RuntimeIntegrationRecord
impl UnwindSafe for RuntimeIntegrationRecord
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