pub struct DatasetEventStreamStatus {
pub name: String,
pub message_schema_reference: Option<MessageSchemaReference>,
pub error: Option<ConfigError>,
}
Expand description
Represents the status for a dataset, event, or stream.
Fields§
§name: String
The name of the dataset/event/stream. Must be unique within the status.datasets[i]/events[i]/streams[i] array. This name is used to correlate between the spec and status dataset/event/stream information.
message_schema_reference: Option<MessageSchemaReference>
The message schema reference.
error: Option<ConfigError>
The last error that occurred while processing the dataset/event/stream.
Trait Implementations§
Source§impl Clone for DatasetEventStreamStatus
impl Clone for DatasetEventStreamStatus
Source§fn clone(&self) -> DatasetEventStreamStatus
fn clone(&self) -> DatasetEventStreamStatus
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 DatasetEventStreamStatus
impl Debug for DatasetEventStreamStatus
Source§impl PartialEq for DatasetEventStreamStatus
impl PartialEq for DatasetEventStreamStatus
impl StructuralPartialEq for DatasetEventStreamStatus
Auto Trait Implementations§
impl Freeze for DatasetEventStreamStatus
impl RefUnwindSafe for DatasetEventStreamStatus
impl Send for DatasetEventStreamStatus
impl Sync for DatasetEventStreamStatus
impl Unpin for DatasetEventStreamStatus
impl UnwindSafe for DatasetEventStreamStatus
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