pub struct RipeStatResponse {Show 14 fields
pub messages: Vec<Vec<String>>,
pub see_also: Vec<Vec<String>>,
pub build_version: String,
pub cached: bool,
pub data_call_name: RipeStatDataType,
pub data_call_status: String,
pub process_time: i64,
pub query_id: String,
pub server_id: String,
pub status: String,
pub status_code: i64,
pub time: String,
pub version: String,
pub data: RipeStatResponseData,
}Expand description
RipeStatResponse
Fields§
§messages: Vec<Vec<String>>§see_also: Vec<Vec<String>>§build_version: String§cached: bool§data_call_name: RipeStatDataType§data_call_status: String§process_time: i64§query_id: String§server_id: String§status: String§status_code: i64§time: String§version: String§data: RipeStatResponseDataTrait Implementations§
Source§impl Clone for RipeStatResponse
impl Clone for RipeStatResponse
Source§fn clone(&self) -> RipeStatResponse
fn clone(&self) -> RipeStatResponse
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 RipeStatResponse
impl Debug for RipeStatResponse
Source§impl<'de> Deserialize<'de> for RipeStatResponse
impl<'de> Deserialize<'de> for RipeStatResponse
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 RipeStatResponse
impl PartialEq for RipeStatResponse
Source§fn eq(&self, other: &RipeStatResponse) -> bool
fn eq(&self, other: &RipeStatResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RipeStatResponse
impl Serialize for RipeStatResponse
impl StructuralPartialEq for RipeStatResponse
Auto Trait Implementations§
impl Freeze for RipeStatResponse
impl RefUnwindSafe for RipeStatResponse
impl Send for RipeStatResponse
impl Sync for RipeStatResponse
impl Unpin for RipeStatResponse
impl UnsafeUnpin for RipeStatResponse
impl UnwindSafe for RipeStatResponse
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