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