pub struct RuntimeIntegrationConnection {
pub connected: bool,
pub status: String,
pub expires_at: Option<String>,
pub display_name: Option<String>,
}Fields§
§connected: bool§status: String§expires_at: Option<String>§display_name: Option<String>Trait Implementations§
Source§impl Clone for RuntimeIntegrationConnection
impl Clone for RuntimeIntegrationConnection
Source§fn clone(&self) -> RuntimeIntegrationConnection
fn clone(&self) -> RuntimeIntegrationConnection
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 RuntimeIntegrationConnection
impl Debug for RuntimeIntegrationConnection
Source§impl<'de> Deserialize<'de> for RuntimeIntegrationConnection
impl<'de> Deserialize<'de> for RuntimeIntegrationConnection
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 RuntimeIntegrationConnection
impl PartialEq for RuntimeIntegrationConnection
Source§fn eq(&self, other: &RuntimeIntegrationConnection) -> bool
fn eq(&self, other: &RuntimeIntegrationConnection) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RuntimeIntegrationConnection
Auto Trait Implementations§
impl Freeze for RuntimeIntegrationConnection
impl RefUnwindSafe for RuntimeIntegrationConnection
impl Send for RuntimeIntegrationConnection
impl Sync for RuntimeIntegrationConnection
impl Unpin for RuntimeIntegrationConnection
impl UnsafeUnpin for RuntimeIntegrationConnection
impl UnwindSafe for RuntimeIntegrationConnection
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