pub type Result<T> = Result<T, TinyAgentsError>;Expand description
Convenience alias for std::result::Result<T, TinyAgentsError> used
throughout the crate’s public API.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(TinyAgentsError),
}pub type Result<T> = Result<T, TinyAgentsError>;Convenience alias for std::result::Result<T, TinyAgentsError> used
throughout the crate’s public API.
pub enum Result<T> {
Ok(T),
Err(TinyAgentsError),
}