pub enum AiderStreamJsonLineOutcome {
Ok {
line: AiderStreamJsonLine,
event: AiderStreamJsonEvent,
},
Err {
line: AiderStreamJsonLine,
error: AiderStreamJsonError,
},
}Variants§
Trait Implementations§
Source§impl Clone for AiderStreamJsonLineOutcome
impl Clone for AiderStreamJsonLineOutcome
Source§fn clone(&self) -> AiderStreamJsonLineOutcome
fn clone(&self) -> AiderStreamJsonLineOutcome
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 AiderStreamJsonLineOutcome
impl Debug for AiderStreamJsonLineOutcome
Source§impl PartialEq for AiderStreamJsonLineOutcome
impl PartialEq for AiderStreamJsonLineOutcome
Source§fn eq(&self, other: &AiderStreamJsonLineOutcome) -> bool
fn eq(&self, other: &AiderStreamJsonLineOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for AiderStreamJsonLineOutcome
impl StructuralPartialEq for AiderStreamJsonLineOutcome
Auto Trait Implementations§
impl Freeze for AiderStreamJsonLineOutcome
impl RefUnwindSafe for AiderStreamJsonLineOutcome
impl Send for AiderStreamJsonLineOutcome
impl Sync for AiderStreamJsonLineOutcome
impl Unpin for AiderStreamJsonLineOutcome
impl UnsafeUnpin for AiderStreamJsonLineOutcome
impl UnwindSafe for AiderStreamJsonLineOutcome
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