pub struct PublicTenantAgent {
pub agent_id: String,
pub name: String,
pub description: Option<String>,
pub icon: Option<String>,
pub greeting: Option<String>,
}Expand description
PublicTenantAgent model.
Fields§
§agent_id: String§name: String§description: Option<String>§icon: Option<String>§greeting: Option<String>Trait Implementations§
Source§impl Clone for PublicTenantAgent
impl Clone for PublicTenantAgent
Source§fn clone(&self) -> PublicTenantAgent
fn clone(&self) -> PublicTenantAgent
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 PublicTenantAgent
impl Debug for PublicTenantAgent
Source§impl Default for PublicTenantAgent
impl Default for PublicTenantAgent
Source§fn default() -> PublicTenantAgent
fn default() -> PublicTenantAgent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PublicTenantAgent
impl<'de> Deserialize<'de> for PublicTenantAgent
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 PublicTenantAgent
impl PartialEq for PublicTenantAgent
Source§impl Serialize for PublicTenantAgent
impl Serialize for PublicTenantAgent
impl StructuralPartialEq for PublicTenantAgent
Auto Trait Implementations§
impl Freeze for PublicTenantAgent
impl RefUnwindSafe for PublicTenantAgent
impl Send for PublicTenantAgent
impl Sync for PublicTenantAgent
impl Unpin for PublicTenantAgent
impl UnsafeUnpin for PublicTenantAgent
impl UnwindSafe for PublicTenantAgent
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