#[non_exhaustive]pub enum Specification {
ExtensionSpec(Box<ExtensionTool>),
FunctionSpec(Box<FunctionTool>),
ConnectorSpec(Box<ConnectorTool>),
OpenApiSpec(Box<OpenApiTool>),
}Available on crate feature
tools only.Expand description
Specification of the Tool.
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.
ExtensionSpec(Box<ExtensionTool>)
👎Deprecated
Vertex extension tool specification.
FunctionSpec(Box<FunctionTool>)
Client side executed function specification.
ConnectorSpec(Box<ConnectorTool>)
Integration connectors tool specification.
OpenApiSpec(Box<OpenApiTool>)
OpenAPI tool.
Trait Implementations§
Source§impl Clone for Specification
impl Clone for Specification
Source§fn clone(&self) -> Specification
fn clone(&self) -> Specification
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 Specification
impl Debug for Specification
Source§impl PartialEq for Specification
impl PartialEq for Specification
impl StructuralPartialEq for Specification
Auto Trait Implementations§
impl Freeze for Specification
impl RefUnwindSafe for Specification
impl Send for Specification
impl Sync for Specification
impl Unpin for Specification
impl UnwindSafe for Specification
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