pub enum RealtimeFunctionToolKind {
Function,
Other(String),
}Expand description
Real-time function tool kind.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for RealtimeFunctionToolKind
impl Clone for RealtimeFunctionToolKind
Source§fn clone(&self) -> RealtimeFunctionToolKind
fn clone(&self) -> RealtimeFunctionToolKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RealtimeFunctionToolKind
impl Debug for RealtimeFunctionToolKind
impl Eq for RealtimeFunctionToolKind
Source§impl From<&str> for RealtimeFunctionToolKind
impl From<&str> for RealtimeFunctionToolKind
Source§impl From<String> for RealtimeFunctionToolKind
impl From<String> for RealtimeFunctionToolKind
Source§impl Hash for RealtimeFunctionToolKind
impl Hash for RealtimeFunctionToolKind
Source§impl<'de> NsonDeserialize<'de> for RealtimeFunctionToolKind
impl<'de> NsonDeserialize<'de> for RealtimeFunctionToolKind
Source§fn nextdecode_into<D: FormatDecoder<'de>>(
decoder: &mut D,
out: &mut DecodeSlot<Self>,
) -> Result<(), D::Error>
fn nextdecode_into<D: FormatDecoder<'de>>( decoder: &mut D, out: &mut DecodeSlot<Self>, ) -> Result<(), D::Error>
Decode into
out. Read moreSource§fn expecting() -> &'static str
fn expecting() -> &'static str
Human-readable description of the value this type decodes from. Read more
Source§fn nextdecode<D>(
decoder: &mut D,
) -> Result<Self, <D as FormatDecoder<'de>>::Error>where
D: FormatDecoder<'de>,
fn nextdecode<D>(
decoder: &mut D,
) -> Result<Self, <D as FormatDecoder<'de>>::Error>where
D: FormatDecoder<'de>,
Decode and return a value.
Source§impl NsonSchema for RealtimeFunctionToolKind
impl NsonSchema for RealtimeFunctionToolKind
Source§const SCHEMA: TypeSchema = ::nextjson::TypeSchema::Str
const SCHEMA: TypeSchema = ::nextjson::TypeSchema::Str
The compile-time structural description.
Source§impl NsonSerialize for RealtimeFunctionToolKind
impl NsonSerialize for RealtimeFunctionToolKind
Source§fn nextencode<E: FormatEncoder>(&self, encoder: &mut E) -> Result<(), E::Error>
fn nextencode<E: FormatEncoder>(&self, encoder: &mut E) -> Result<(), E::Error>
Source§impl PartialEq for RealtimeFunctionToolKind
impl PartialEq for RealtimeFunctionToolKind
impl StructuralPartialEq for RealtimeFunctionToolKind
Auto Trait Implementations§
impl Freeze for RealtimeFunctionToolKind
impl RefUnwindSafe for RealtimeFunctionToolKind
impl Send for RealtimeFunctionToolKind
impl Sync for RealtimeFunctionToolKind
impl Unpin for RealtimeFunctionToolKind
impl UnsafeUnpin for RealtimeFunctionToolKind
impl UnwindSafe for RealtimeFunctionToolKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.