pub enum IntentBindingType {
Intent,
}Expand description
IntentBindingType
JSON schema
{
"type": "string",
"enum": [
"intent"
]
}Variants§
Intent
Trait Implementations§
Source§impl Clone for IntentBindingType
impl Clone for IntentBindingType
Source§fn clone(&self) -> IntentBindingType
fn clone(&self) -> IntentBindingType
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 IntentBindingType
Source§impl Debug for IntentBindingType
impl Debug for IntentBindingType
Source§impl<'de> Deserialize<'de> for IntentBindingType
impl<'de> Deserialize<'de> for IntentBindingType
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 IntentBindingType
impl Display for IntentBindingType
impl Eq for IntentBindingType
Source§impl From<&IntentBindingType> for IntentBindingType
impl From<&IntentBindingType> for IntentBindingType
Source§fn from(value: &IntentBindingType) -> Self
fn from(value: &IntentBindingType) -> Self
Converts to this type from the input type.
Source§impl FromStr for IntentBindingType
impl FromStr for IntentBindingType
Source§impl Hash for IntentBindingType
impl Hash for IntentBindingType
Source§impl Ord for IntentBindingType
impl Ord for IntentBindingType
Source§fn cmp(&self, other: &IntentBindingType) -> Ordering
fn cmp(&self, other: &IntentBindingType) -> 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 IntentBindingType
impl PartialEq for IntentBindingType
Source§fn eq(&self, other: &IntentBindingType) -> bool
fn eq(&self, other: &IntentBindingType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for IntentBindingType
impl PartialOrd for IntentBindingType
Source§impl Serialize for IntentBindingType
impl Serialize for IntentBindingType
impl StructuralPartialEq for IntentBindingType
Source§impl TryFrom<&String> for IntentBindingType
impl TryFrom<&String> for IntentBindingType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for IntentBindingType
impl TryFrom<&str> for IntentBindingType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for IntentBindingType
impl TryFrom<String> for IntentBindingType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for IntentBindingType
impl RefUnwindSafe for IntentBindingType
impl Send for IntentBindingType
impl Sync for IntentBindingType
impl Unpin for IntentBindingType
impl UnsafeUnpin for IntentBindingType
impl UnwindSafe for IntentBindingType
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