Skip to main content

LLMSafe

Trait LLMSafe 

Source
pub trait LLMSafe { }

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl<K: LLMSafe, V: LLMSafe> LLMSafe for HashMap<K, V>

Source§

impl<T: LLMSafe, const N: usize> LLMSafe for [T; N]

Source§

impl<T: LLMSafe> LLMSafe for &T

Source§

impl<T: LLMSafe> LLMSafe for Box<T>

Source§

impl<T: LLMSafe> LLMSafe for Option<T>

Source§

impl<T: LLMSafe> LLMSafe for Vec<T>

Source§

impl<T: LLMSafe> LLMSafe for [T]

Implementors§