#[non_exhaustive]pub struct PutProjectEventsResultEntry { /* private fields */ }Expand description
A structure that contains Evidently's response to the sent events, including an event ID and error codes, if any.
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 ==.