pub struct ExternalSystemObject {
pub object_type: Option<ObjectType>,
pub external_id: Option<String>,
}Expand description
ExternalSystemObject : List of objects within the external system.
Fields§
§object_type: Option<ObjectType>Object Type.
external_id: Option<String>External ID.
Implementations§
Source§impl ExternalSystemObject
impl ExternalSystemObject
Sourcepub fn new() -> ExternalSystemObject
pub fn new() -> ExternalSystemObject
List of objects within the external system.
Trait Implementations§
Source§impl Clone for ExternalSystemObject
impl Clone for ExternalSystemObject
Source§fn clone(&self) -> ExternalSystemObject
fn clone(&self) -> ExternalSystemObject
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 ExternalSystemObject
impl Debug for ExternalSystemObject
Source§impl Default for ExternalSystemObject
impl Default for ExternalSystemObject
Source§fn default() -> ExternalSystemObject
fn default() -> ExternalSystemObject
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExternalSystemObject
impl<'de> Deserialize<'de> for ExternalSystemObject
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 ExternalSystemObject
impl PartialEq for ExternalSystemObject
Source§fn eq(&self, other: &ExternalSystemObject) -> bool
fn eq(&self, other: &ExternalSystemObject) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ExternalSystemObject
impl Serialize for ExternalSystemObject
impl StructuralPartialEq for ExternalSystemObject
Auto Trait Implementations§
impl Freeze for ExternalSystemObject
impl RefUnwindSafe for ExternalSystemObject
impl Send for ExternalSystemObject
impl Sync for ExternalSystemObject
impl Unpin for ExternalSystemObject
impl UnsafeUnpin for ExternalSystemObject
impl UnwindSafe for ExternalSystemObject
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