pub enum FeedbackTargetType {
Endpoint,
X402,
Model,
Agent,
Workflow,
}Expand description
FeedbackTargetType
JSON schema
{
"type": "string",
"enum": [
"endpoint",
"x402",
"model",
"agent",
"workflow"
]
}Variants§
Trait Implementations§
Source§impl Clone for FeedbackTargetType
impl Clone for FeedbackTargetType
Source§fn clone(&self) -> FeedbackTargetType
fn clone(&self) -> FeedbackTargetType
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 moreimpl Copy for FeedbackTargetType
Source§impl Debug for FeedbackTargetType
impl Debug for FeedbackTargetType
Source§impl<'de> Deserialize<'de> for FeedbackTargetType
impl<'de> Deserialize<'de> for FeedbackTargetType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for FeedbackTargetType
impl Display for FeedbackTargetType
impl Eq for FeedbackTargetType
Source§impl FromStr for FeedbackTargetType
impl FromStr for FeedbackTargetType
Source§impl Hash for FeedbackTargetType
impl Hash for FeedbackTargetType
Source§impl Ord for FeedbackTargetType
impl Ord for FeedbackTargetType
Source§fn cmp(&self, other: &FeedbackTargetType) -> Ordering
fn cmp(&self, other: &FeedbackTargetType) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for FeedbackTargetType
impl PartialEq for FeedbackTargetType
Source§fn eq(&self, other: &FeedbackTargetType) -> bool
fn eq(&self, other: &FeedbackTargetType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for FeedbackTargetType
impl PartialOrd for FeedbackTargetType
Source§impl Serialize for FeedbackTargetType
impl Serialize for FeedbackTargetType
impl StructuralPartialEq for FeedbackTargetType
Source§impl TryFrom<&String> for FeedbackTargetType
impl TryFrom<&String> for FeedbackTargetType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for FeedbackTargetType
impl TryFrom<&str> for FeedbackTargetType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for FeedbackTargetType
impl TryFrom<String> for FeedbackTargetType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for FeedbackTargetType
impl RefUnwindSafe for FeedbackTargetType
impl Send for FeedbackTargetType
impl Sync for FeedbackTargetType
impl Unpin for FeedbackTargetType
impl UnsafeUnpin for FeedbackTargetType
impl UnwindSafe for FeedbackTargetType
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