pub struct CryptoDataTool;Trait Implementations§
Source§impl Tool for CryptoDataTool
impl Tool for CryptoDataTool
fn name(&self) -> &str
fn description(&self) -> &str
fn input_schema(&self) -> Value
fn execute<'life0, 'async_trait>(
&'life0 self,
parameters: Value,
) -> Pin<Box<dyn Future<Output = Result<ToolResult, BrightDataError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute_legacy<'life0, 'async_trait>(
&'life0 self,
parameters: Value,
) -> Pin<Box<dyn Future<Output = Result<Value, BrightDataError>> + Send + 'async_trait>>where
Self: Sync + 'async_trait,
'life0: 'async_trait,
Auto Trait Implementations§
impl Freeze for CryptoDataTool
impl RefUnwindSafe for CryptoDataTool
impl Send for CryptoDataTool
impl Sync for CryptoDataTool
impl Unpin for CryptoDataTool
impl UnwindSafe for CryptoDataTool
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