pub struct OrganizationConnectionResponseModel {
pub id: Option<Uuid>,
pub type: Option<OrganizationConnectionType>,
pub organization_id: Option<Uuid>,
pub enabled: Option<bool>,
pub config: Option<Value>,
}
Fields§
§id: Option<Uuid>
§type: Option<OrganizationConnectionType>
§organization_id: Option<Uuid>
§enabled: Option<bool>
§config: Option<Value>
Implementations§
Trait Implementations§
Source§impl Clone for OrganizationConnectionResponseModel
impl Clone for OrganizationConnectionResponseModel
Source§fn clone(&self) -> OrganizationConnectionResponseModel
fn clone(&self) -> OrganizationConnectionResponseModel
Returns a copy 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 Default for OrganizationConnectionResponseModel
impl Default for OrganizationConnectionResponseModel
Source§fn default() -> OrganizationConnectionResponseModel
fn default() -> OrganizationConnectionResponseModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OrganizationConnectionResponseModel
impl<'de> Deserialize<'de> for OrganizationConnectionResponseModel
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 OrganizationConnectionResponseModel
impl PartialEq for OrganizationConnectionResponseModel
Source§fn eq(&self, other: &OrganizationConnectionResponseModel) -> bool
fn eq(&self, other: &OrganizationConnectionResponseModel) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for OrganizationConnectionResponseModel
Auto Trait Implementations§
impl Freeze for OrganizationConnectionResponseModel
impl RefUnwindSafe for OrganizationConnectionResponseModel
impl Send for OrganizationConnectionResponseModel
impl Sync for OrganizationConnectionResponseModel
impl Unpin for OrganizationConnectionResponseModel
impl UnwindSafe for OrganizationConnectionResponseModel
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