pub struct AssetStatus {
pub config: Option<ConfigStatus>,
pub datasets: Option<Vec<DatasetEventStreamStatus>>,
pub events: Option<Vec<DatasetEventStreamStatus>>,
pub management_groups: Option<Vec<ManagementGroupStatus>>,
pub streams: Option<Vec<DatasetEventStreamStatus>>,
}
Expand description
Represents the observed status of an asset.
Fields§
§config: Option<ConfigStatus>
The configuration status of the asset.
datasets: Option<Vec<DatasetEventStreamStatus>>
Array of dataset statuses that describe the status of each dataset.
events: Option<Vec<DatasetEventStreamStatus>>
Array of event statuses that describe the status of each event.
management_groups: Option<Vec<ManagementGroupStatus>>
Array of management group statuses that describe the status of each management group.
streams: Option<Vec<DatasetEventStreamStatus>>
Array of stream statuses that describe the status of each stream.
Trait Implementations§
Source§impl Clone for AssetStatus
impl Clone for AssetStatus
Source§fn clone(&self) -> AssetStatus
fn clone(&self) -> AssetStatus
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 AssetStatus
impl Debug for AssetStatus
Source§impl Default for AssetStatus
impl Default for AssetStatus
Source§fn default() -> AssetStatus
fn default() -> AssetStatus
Returns the “default value” for a type. Read more
Source§impl PartialEq for AssetStatus
impl PartialEq for AssetStatus
impl StructuralPartialEq for AssetStatus
Auto Trait Implementations§
impl Freeze for AssetStatus
impl RefUnwindSafe for AssetStatus
impl Send for AssetStatus
impl Sync for AssetStatus
impl Unpin for AssetStatus
impl UnwindSafe for AssetStatus
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