pub struct CustomEventStatus {
pub custom_event: Option<CustomEvent>,
pub errors: Option<Vec<CustomEventError>>,
pub kind: Option<String>,
}Expand description
The original custom event that was inserted and whether there were any errors.
This type is not used in any activity, and only used as part of another schema.
Fields§
§custom_event: Option<CustomEvent>The original custom event that was inserted.
errors: Option<Vec<CustomEventError>>A list of errors related to this custom event.
kind: Option<String>Identifies what kind of resource this is. Value: the fixed string “dfareporting#customEventStatus”.
Trait Implementations§
Source§impl Clone for CustomEventStatus
impl Clone for CustomEventStatus
Source§fn clone(&self) -> CustomEventStatus
fn clone(&self) -> CustomEventStatus
Returns a duplicate 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 Debug for CustomEventStatus
impl Debug for CustomEventStatus
Source§impl Default for CustomEventStatus
impl Default for CustomEventStatus
Source§fn default() -> CustomEventStatus
fn default() -> CustomEventStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CustomEventStatus
impl<'de> Deserialize<'de> for CustomEventStatus
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 Serialize for CustomEventStatus
impl Serialize for CustomEventStatus
impl Part for CustomEventStatus
Auto Trait Implementations§
impl Freeze for CustomEventStatus
impl RefUnwindSafe for CustomEventStatus
impl Send for CustomEventStatus
impl Sync for CustomEventStatus
impl Unpin for CustomEventStatus
impl UnwindSafe for CustomEventStatus
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