pub enum ApiFunctionCallChoice {
Mode(String),
Function {
name: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for ApiFunctionCallChoice
impl Clone for ApiFunctionCallChoice
Source§fn clone(&self) -> ApiFunctionCallChoice
fn clone(&self) -> ApiFunctionCallChoice
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 ApiFunctionCallChoice
impl Debug for ApiFunctionCallChoice
Source§impl<'de> Deserialize<'de> for ApiFunctionCallChoice
impl<'de> Deserialize<'de> for ApiFunctionCallChoice
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 PartialEq for ApiFunctionCallChoice
impl PartialEq for ApiFunctionCallChoice
Source§fn eq(&self, other: &ApiFunctionCallChoice) -> bool
fn eq(&self, other: &ApiFunctionCallChoice) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ApiFunctionCallChoice
impl Serialize for ApiFunctionCallChoice
impl StructuralPartialEq for ApiFunctionCallChoice
Auto Trait Implementations§
impl Freeze for ApiFunctionCallChoice
impl RefUnwindSafe for ApiFunctionCallChoice
impl Send for ApiFunctionCallChoice
impl Sync for ApiFunctionCallChoice
impl Unpin for ApiFunctionCallChoice
impl UnsafeUnpin for ApiFunctionCallChoice
impl UnwindSafe for ApiFunctionCallChoice
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