pub struct LandingStats {
pub agents_deployed: Option<i64>,
pub llm_providers: Option<i64>,
pub registered_users: Option<i64>,
pub tool_calls_today: Option<i64>,
pub total_runs: Option<i64>,
pub total_sessions: Option<i64>,
pub total_tokens: Option<i64>,
}Expand description
LandingStats model.
Fields§
§agents_deployed: Option<i64>§llm_providers: Option<i64>§registered_users: Option<i64>§tool_calls_today: Option<i64>§total_runs: Option<i64>§total_sessions: Option<i64>§total_tokens: Option<i64>Trait Implementations§
Source§impl Clone for LandingStats
impl Clone for LandingStats
Source§fn clone(&self) -> LandingStats
fn clone(&self) -> LandingStats
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 LandingStats
impl Debug for LandingStats
Source§impl Default for LandingStats
impl Default for LandingStats
Source§fn default() -> LandingStats
fn default() -> LandingStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LandingStats
impl<'de> Deserialize<'de> for LandingStats
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 LandingStats
impl PartialEq for LandingStats
Source§impl Serialize for LandingStats
impl Serialize for LandingStats
impl StructuralPartialEq for LandingStats
Auto Trait Implementations§
impl Freeze for LandingStats
impl RefUnwindSafe for LandingStats
impl Send for LandingStats
impl Sync for LandingStats
impl Unpin for LandingStats
impl UnsafeUnpin for LandingStats
impl UnwindSafe for LandingStats
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