pub enum IsCompleteReplyStatus {
Incomplete,
Complete,
Invalid,
Unknown,
}
Variants§
Incomplete
The code is incomplete, and the frontend should prompt the user for more input.
Complete
The code is ready to be executed.
Invalid
The code is invalid, yet can be sent for execution to see a syntax error.
Unknown
The kernel is unable to determine status. The frontend should also handle the kernel not replying promptly. It may default to sending the code for execution, or it may implement simple fallback heuristics for whether to execute the code (e.g. execute after a blank line).
Trait Implementations§
Source§impl Clone for IsCompleteReplyStatus
impl Clone for IsCompleteReplyStatus
Source§fn clone(&self) -> IsCompleteReplyStatus
fn clone(&self) -> IsCompleteReplyStatus
Returns a copy 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 IsCompleteReplyStatus
impl Debug for IsCompleteReplyStatus
Source§impl<'de> Deserialize<'de> for IsCompleteReplyStatus
impl<'de> Deserialize<'de> for IsCompleteReplyStatus
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 IsCompleteReplyStatus
impl PartialEq for IsCompleteReplyStatus
Source§impl Serialize for IsCompleteReplyStatus
impl Serialize for IsCompleteReplyStatus
impl StructuralPartialEq for IsCompleteReplyStatus
Auto Trait Implementations§
impl Freeze for IsCompleteReplyStatus
impl RefUnwindSafe for IsCompleteReplyStatus
impl Send for IsCompleteReplyStatus
impl Sync for IsCompleteReplyStatus
impl Unpin for IsCompleteReplyStatus
impl UnwindSafe for IsCompleteReplyStatus
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