pub struct MessagingConnection {
pub provider: String,
pub placement: Placement,
pub connection_id: String,
pub account_id: String,
pub display_name: Option<String>,
pub enabled: bool,
pub status: String,
pub status_message: Option<String>,
pub bound_to_current_scope: bool,
pub provider_data: Value,
}Fields§
§provider: String§placement: Placement§connection_id: String§account_id: String§display_name: Option<String>§enabled: bool§status: String§status_message: Option<String>§bound_to_current_scope: bool§provider_data: ValueTrait Implementations§
Source§impl Clone for MessagingConnection
impl Clone for MessagingConnection
Source§fn clone(&self) -> MessagingConnection
fn clone(&self) -> MessagingConnection
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MessagingConnection
impl Debug for MessagingConnection
Source§impl<'de> Deserialize<'de> for MessagingConnection
impl<'de> Deserialize<'de> for MessagingConnection
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 MessagingConnection
impl PartialEq for MessagingConnection
Source§impl Serialize for MessagingConnection
impl Serialize for MessagingConnection
impl StructuralPartialEq for MessagingConnection
Auto Trait Implementations§
impl Freeze for MessagingConnection
impl RefUnwindSafe for MessagingConnection
impl Send for MessagingConnection
impl Sync for MessagingConnection
impl Unpin for MessagingConnection
impl UnsafeUnpin for MessagingConnection
impl UnwindSafe for MessagingConnection
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