pub enum FunctionCallStatus {
InProgress,
Completed,
Incomplete,
}Variants§
Trait Implementations§
Source§impl Clone for FunctionCallStatus
impl Clone for FunctionCallStatus
Source§fn clone(&self) -> FunctionCallStatus
fn clone(&self) -> FunctionCallStatus
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 FunctionCallStatus
impl Debug for FunctionCallStatus
Source§impl<'de> Deserialize<'de> for FunctionCallStatus
impl<'de> Deserialize<'de> for FunctionCallStatus
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 FunctionCallStatus
impl PartialEq for FunctionCallStatus
Source§impl Serialize for FunctionCallStatus
impl Serialize for FunctionCallStatus
impl StructuralPartialEq for FunctionCallStatus
Auto Trait Implementations§
impl Freeze for FunctionCallStatus
impl RefUnwindSafe for FunctionCallStatus
impl Send for FunctionCallStatus
impl Sync for FunctionCallStatus
impl Unpin for FunctionCallStatus
impl UnwindSafe for FunctionCallStatus
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