#[non_exhaustive]pub enum EngineMetadata {
ChatEngineMetadata(Box<ChatEngineMetadata>),
}Available on crate feature
engine-service only.Expand description
Engine metadata to monitor the status of the engine.
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.
ChatEngineMetadata(Box<ChatEngineMetadata>)
Output only. Additional information of the Chat Engine. Only applicable if solution_type is SOLUTION_TYPE_CHAT.
Trait Implementations§
Source§impl Clone for EngineMetadata
impl Clone for EngineMetadata
Source§fn clone(&self) -> EngineMetadata
fn clone(&self) -> EngineMetadata
Returns a duplicate 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 EngineMetadata
impl Debug for EngineMetadata
Source§impl PartialEq for EngineMetadata
impl PartialEq for EngineMetadata
impl StructuralPartialEq for EngineMetadata
Auto Trait Implementations§
impl Freeze for EngineMetadata
impl RefUnwindSafe for EngineMetadata
impl Send for EngineMetadata
impl Sync for EngineMetadata
impl Unpin for EngineMetadata
impl UnwindSafe for EngineMetadata
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