pub struct ExternalSystem {
pub system: Option<System>,
pub objects: Option<Vec<ExternalSystemObject>>,
}Expand description
ExternalSystem : A list of links to external systems such as CRM, Telephony System, Case Management, etc.
Fields§
§system: Option<System>External system name.
objects: Option<Vec<ExternalSystemObject>>List of objects within the external system.
Implementations§
Source§impl ExternalSystem
impl ExternalSystem
Sourcepub fn new() -> ExternalSystem
pub fn new() -> ExternalSystem
A list of links to external systems such as CRM, Telephony System, Case Management, etc.
Trait Implementations§
Source§impl Clone for ExternalSystem
impl Clone for ExternalSystem
Source§fn clone(&self) -> ExternalSystem
fn clone(&self) -> ExternalSystem
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 ExternalSystem
impl Debug for ExternalSystem
Source§impl Default for ExternalSystem
impl Default for ExternalSystem
Source§fn default() -> ExternalSystem
fn default() -> ExternalSystem
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExternalSystem
impl<'de> Deserialize<'de> for ExternalSystem
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 ExternalSystem
impl PartialEq for ExternalSystem
Source§fn eq(&self, other: &ExternalSystem) -> bool
fn eq(&self, other: &ExternalSystem) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ExternalSystem
impl Serialize for ExternalSystem
impl StructuralPartialEq for ExternalSystem
Auto Trait Implementations§
impl Freeze for ExternalSystem
impl RefUnwindSafe for ExternalSystem
impl Send for ExternalSystem
impl Sync for ExternalSystem
impl Unpin for ExternalSystem
impl UnsafeUnpin for ExternalSystem
impl UnwindSafe for ExternalSystem
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