pub struct GeminiStreamJsonResultPayload {
pub status: String,
pub error_type: Option<String>,
pub error_message: Option<String>,
pub stats: Option<Value>,
pub raw: Value,
}Fields§
§status: String§error_type: Option<String>§error_message: Option<String>§stats: Option<Value>§raw: ValueTrait Implementations§
Source§impl Clone for GeminiStreamJsonResultPayload
impl Clone for GeminiStreamJsonResultPayload
Source§fn clone(&self) -> GeminiStreamJsonResultPayload
fn clone(&self) -> GeminiStreamJsonResultPayload
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 PartialEq for GeminiStreamJsonResultPayload
impl PartialEq for GeminiStreamJsonResultPayload
Source§fn eq(&self, other: &GeminiStreamJsonResultPayload) -> bool
fn eq(&self, other: &GeminiStreamJsonResultPayload) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for GeminiStreamJsonResultPayload
impl StructuralPartialEq for GeminiStreamJsonResultPayload
Auto Trait Implementations§
impl Freeze for GeminiStreamJsonResultPayload
impl RefUnwindSafe for GeminiStreamJsonResultPayload
impl Send for GeminiStreamJsonResultPayload
impl Sync for GeminiStreamJsonResultPayload
impl Unpin for GeminiStreamJsonResultPayload
impl UnsafeUnpin for GeminiStreamJsonResultPayload
impl UnwindSafe for GeminiStreamJsonResultPayload
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