18 lines
673 B
Rust
18 lines
673 B
Rust
// SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
// Based on https://github.com/64bit/async-openai/ by Himanshu Neema
|
|
// Original Copyright (c) 2022 Himanshu Neema
|
|
// Licensed under MIT License (see ATTRIBUTIONS-Rust.md)
|
|
//
|
|
// Modifications Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES.
|
|
// Licensed under Apache 2.0
|
|
|
|
pub trait AsyncTryFrom<T>: Sized {
|
|
/// The type returned in the event of a conversion error.
|
|
type Error;
|
|
|
|
/// Performs the conversion.
|
|
fn try_from(value: T) -> impl std::future::Future<Output = Result<Self, Self::Error>> + Send;
|
|
}
|