pub struct PublicTenant {Show 14 fields
pub marketplace: Option<Map<String, Value>>,
pub tenant_id: String,
pub slug: String,
pub name: String,
pub description: Option<String>,
pub logo_url: Option<String>,
pub category: Option<String>,
pub tags: Vec<String>,
pub agents_count: i64,
pub agents: Vec<PublicTenantAgent>,
pub stats: PublicTenantStats,
pub social_links: Option<Map<String, Value>>,
pub branding: Option<Map<String, Value>>,
pub published_at: Option<String>,
}Expand description
PublicTenant model.
Fields§
§marketplace: Option<Map<String, Value>>Served 2026-09-10; contents not asserted.
tenant_id: String§slug: String§name: String§description: Option<String>§logo_url: Option<String>§category: Option<String>§agents_count: i64§agents: Vec<PublicTenantAgent>§stats: PublicTenantStats§branding: Option<Map<String, Value>>§published_at: Option<String>Trait Implementations§
Source§impl Clone for PublicTenant
impl Clone for PublicTenant
Source§fn clone(&self) -> PublicTenant
fn clone(&self) -> PublicTenant
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 PublicTenant
impl Debug for PublicTenant
Source§impl Default for PublicTenant
impl Default for PublicTenant
Source§fn default() -> PublicTenant
fn default() -> PublicTenant
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PublicTenant
impl<'de> Deserialize<'de> for PublicTenant
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 PublicTenant
impl PartialEq for PublicTenant
Source§impl Serialize for PublicTenant
impl Serialize for PublicTenant
impl StructuralPartialEq for PublicTenant
Auto Trait Implementations§
impl Freeze for PublicTenant
impl RefUnwindSafe for PublicTenant
impl Send for PublicTenant
impl Sync for PublicTenant
impl Unpin for PublicTenant
impl UnsafeUnpin for PublicTenant
impl UnwindSafe for PublicTenant
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