pub struct InstallConnectionRequest {
pub connection_id: String,
pub account_id: Option<String>,
pub metadata: Option<HashMap<String, Value>>,
}Fields§
§connection_id: String§account_id: Option<String>§metadata: Option<HashMap<String, Value>>Implementations§
Source§impl InstallConnectionRequest
impl InstallConnectionRequest
pub fn new(connection_id: String) -> InstallConnectionRequest
Trait Implementations§
Source§impl Clone for InstallConnectionRequest
impl Clone for InstallConnectionRequest
Source§fn clone(&self) -> InstallConnectionRequest
fn clone(&self) -> InstallConnectionRequest
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 InstallConnectionRequest
impl Debug for InstallConnectionRequest
Source§impl Default for InstallConnectionRequest
impl Default for InstallConnectionRequest
Source§fn default() -> InstallConnectionRequest
fn default() -> InstallConnectionRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InstallConnectionRequest
impl<'de> Deserialize<'de> for InstallConnectionRequest
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 InstallConnectionRequest
impl PartialEq for InstallConnectionRequest
Source§fn eq(&self, other: &InstallConnectionRequest) -> bool
fn eq(&self, other: &InstallConnectionRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for InstallConnectionRequest
impl Serialize for InstallConnectionRequest
impl StructuralPartialEq for InstallConnectionRequest
Auto Trait Implementations§
impl Freeze for InstallConnectionRequest
impl RefUnwindSafe for InstallConnectionRequest
impl Send for InstallConnectionRequest
impl Sync for InstallConnectionRequest
impl Unpin for InstallConnectionRequest
impl UnsafeUnpin for InstallConnectionRequest
impl UnwindSafe for InstallConnectionRequest
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