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