pub struct ConnectionCreated {
pub org: String,
pub account_id: i64,
pub connection: Connection,
}Expand description
A newly created connection, with the org it belongs to.
Fields§
§org: String§account_id: i64§connection: ConnectionTrait Implementations§
Source§impl Clone for ConnectionCreated
impl Clone for ConnectionCreated
Source§fn clone(&self) -> ConnectionCreated
fn clone(&self) -> ConnectionCreated
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 ConnectionCreated
impl Debug for ConnectionCreated
Source§impl Default for ConnectionCreated
impl Default for ConnectionCreated
Source§fn default() -> ConnectionCreated
fn default() -> ConnectionCreated
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConnectionCreated
impl<'de> Deserialize<'de> for ConnectionCreated
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 ConnectionCreated
impl PartialEq for ConnectionCreated
Source§impl Serialize for ConnectionCreated
impl Serialize for ConnectionCreated
impl StructuralPartialEq for ConnectionCreated
Auto Trait Implementations§
impl Freeze for ConnectionCreated
impl RefUnwindSafe for ConnectionCreated
impl Send for ConnectionCreated
impl Sync for ConnectionCreated
impl Unpin for ConnectionCreated
impl UnsafeUnpin for ConnectionCreated
impl UnwindSafe for ConnectionCreated
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