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