pub struct ConnectionResponse {
pub parameters: Value,
pub integration_id: String,
pub connection_subtype: Option<String>,
pub rate_limit: Option<RateLimitState>,
}Expand description
Response from the connection service.
Fields§
§parameters: ValueConnection credentials and configuration
integration_id: StringConnection type identifier (e.g., “sftp”, “bearer”, “api_key”)
connection_subtype: Option<String>Optional connection subtype
rate_limit: Option<RateLimitState>Rate limit state (if applicable)
Trait Implementations§
Source§impl Clone for ConnectionResponse
impl Clone for ConnectionResponse
Source§fn clone(&self) -> ConnectionResponse
fn clone(&self) -> ConnectionResponse
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 ConnectionResponse
impl Debug for ConnectionResponse
Source§impl<'de> Deserialize<'de> for ConnectionResponse
impl<'de> Deserialize<'de> for ConnectionResponse
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
Auto Trait Implementations§
impl Freeze for ConnectionResponse
impl RefUnwindSafe for ConnectionResponse
impl Send for ConnectionResponse
impl Sync for ConnectionResponse
impl Unpin for ConnectionResponse
impl UnwindSafe for ConnectionResponse
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