pub struct StatIndexBean {
pub app: Option<i32>,
pub index: Option<i32>,
pub date: Option<String>,
pub storage: Option<i32>,
pub searchs: Option<i32>,
pub errors: Option<i32>,
pub records: Option<i32>,
pub avg_time: Option<String>,
}
Expand description
StatIndexBean : 索引统计记录
Fields§
§app: Option<i32>
§index: Option<i32>
§date: Option<String>
§storage: Option<i32>
§searchs: Option<i32>
§errors: Option<i32>
§records: Option<i32>
§avg_time: Option<String>
Implementations§
Source§impl StatIndexBean
impl StatIndexBean
Sourcepub fn new() -> StatIndexBean
pub fn new() -> StatIndexBean
索引统计记录
Trait Implementations§
Source§impl Clone for StatIndexBean
impl Clone for StatIndexBean
Source§fn clone(&self) -> StatIndexBean
fn clone(&self) -> StatIndexBean
Returns a duplicate 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 StatIndexBean
impl Debug for StatIndexBean
Source§impl<'de> Deserialize<'de> for StatIndexBean
impl<'de> Deserialize<'de> for StatIndexBean
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 StatIndexBean
impl PartialEq for StatIndexBean
Source§impl Serialize for StatIndexBean
impl Serialize for StatIndexBean
impl StructuralPartialEq for StatIndexBean
Auto Trait Implementations§
impl Freeze for StatIndexBean
impl RefUnwindSafe for StatIndexBean
impl Send for StatIndexBean
impl Sync for StatIndexBean
impl Unpin for StatIndexBean
impl UnwindSafe for StatIndexBean
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