pub enum InvocableOutput {
Text(String),
Structured(Value),
Items(Vec<Item>),
Data(DataRef),
}Variants§
Trait Implementations§
Source§impl Clone for InvocableOutput
impl Clone for InvocableOutput
Source§fn clone(&self) -> InvocableOutput
fn clone(&self) -> InvocableOutput
Returns a duplicate of the value. Read more
1.0.0 · 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 InvocableOutput
impl Debug for InvocableOutput
Source§impl<'de> Deserialize<'de> for InvocableOutput
impl<'de> Deserialize<'de> for InvocableOutput
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 InvocableOutput
impl PartialEq for InvocableOutput
Source§impl Serialize for InvocableOutput
impl Serialize for InvocableOutput
impl StructuralPartialEq for InvocableOutput
Auto Trait Implementations§
impl Freeze for InvocableOutput
impl RefUnwindSafe for InvocableOutput
impl Send for InvocableOutput
impl Sync for InvocableOutput
impl Unpin for InvocableOutput
impl UnsafeUnpin for InvocableOutput
impl UnwindSafe for InvocableOutput
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