#[non_exhaustive]pub enum Label {
DataAccessLabel(String),
LogType(String),
AssetNamespace(String),
IngestionLabel(Box<IngestionLabel>),
}Expand description
The unique identifier for the label.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
DataAccessLabel(String)
The name of the data access label.
LogType(String)
The name of the log type.
AssetNamespace(String)
The asset namespace configured in the forwarder of the customer’s events.
IngestionLabel(Box<IngestionLabel>)
The ingestion label configured in the forwarder of the customer’s events.
Trait Implementations§
impl StructuralPartialEq for Label
Auto Trait Implementations§
impl Freeze for Label
impl RefUnwindSafe for Label
impl Send for Label
impl Sync for Label
impl Unpin for Label
impl UnsafeUnpin for Label
impl UnwindSafe for Label
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