pub struct ExternalCoreEventCompletion {
pub event_id: String,
pub ok: bool,
pub response: Option<Value>,
pub error: Option<ExternalCoreError>,
}Fields§
§event_id: String§ok: bool§response: Option<Value>§error: Option<ExternalCoreError>Trait Implementations§
Source§impl Clone for ExternalCoreEventCompletion
impl Clone for ExternalCoreEventCompletion
Source§fn clone(&self) -> ExternalCoreEventCompletion
fn clone(&self) -> ExternalCoreEventCompletion
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 ExternalCoreEventCompletion
impl Debug for ExternalCoreEventCompletion
Source§impl<'de> Deserialize<'de> for ExternalCoreEventCompletion
impl<'de> Deserialize<'de> for ExternalCoreEventCompletion
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
Auto Trait Implementations§
impl Freeze for ExternalCoreEventCompletion
impl RefUnwindSafe for ExternalCoreEventCompletion
impl Send for ExternalCoreEventCompletion
impl Sync for ExternalCoreEventCompletion
impl Unpin for ExternalCoreEventCompletion
impl UnsafeUnpin for ExternalCoreEventCompletion
impl UnwindSafe for ExternalCoreEventCompletion
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