#[non_exhaustive]pub struct PutProjectEventsResultEntry {
pub event_id: Option<String>,
pub error_code: Option<String>,
pub error_message: Option<String>,
}Expand description
A structure that contains Evidently's response to the sent events, including an event ID and error codes, if any.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.event_id: Option<String>A unique ID assigned to this PutProjectEvents operation.
error_code: Option<String>If the PutProjectEvents operation has an error, the error code is returned here.
error_message: Option<String>If the PutProjectEvents operation has an error, the error message is returned here.
Implementations§
source§impl PutProjectEventsResultEntry
impl PutProjectEventsResultEntry
sourcepub fn event_id(&self) -> Option<&str>
pub fn event_id(&self) -> Option<&str>
A unique ID assigned to this PutProjectEvents operation.
sourcepub fn error_code(&self) -> Option<&str>
pub fn error_code(&self) -> Option<&str>
If the PutProjectEvents operation has an error, the error code is returned here.
sourcepub fn error_message(&self) -> Option<&str>
pub fn error_message(&self) -> Option<&str>
If the PutProjectEvents operation has an error, the error message is returned here.
source§impl PutProjectEventsResultEntry
impl PutProjectEventsResultEntry
sourcepub fn builder() -> PutProjectEventsResultEntryBuilder
pub fn builder() -> PutProjectEventsResultEntryBuilder
Creates a new builder-style object to manufacture PutProjectEventsResultEntry.
Trait Implementations§
source§impl Clone for PutProjectEventsResultEntry
impl Clone for PutProjectEventsResultEntry
source§fn clone(&self) -> PutProjectEventsResultEntry
fn clone(&self) -> PutProjectEventsResultEntry
Returns a copy 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 PutProjectEventsResultEntry
impl Debug for PutProjectEventsResultEntry
source§impl PartialEq<PutProjectEventsResultEntry> for PutProjectEventsResultEntry
impl PartialEq<PutProjectEventsResultEntry> for PutProjectEventsResultEntry
source§fn eq(&self, other: &PutProjectEventsResultEntry) -> bool
fn eq(&self, other: &PutProjectEventsResultEntry) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for PutProjectEventsResultEntry
Auto Trait Implementations§
impl RefUnwindSafe for PutProjectEventsResultEntry
impl Send for PutProjectEventsResultEntry
impl Sync for PutProjectEventsResultEntry
impl Unpin for PutProjectEventsResultEntry
impl UnwindSafe for PutProjectEventsResultEntry
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