pub struct AgentCloudMetadata {
pub id: Option<Uuid>,
pub published: Option<bool>,
pub published_at: Option<DateTime<Utc>>,
pub is_owner: Option<bool>,
}Expand description
Cloud-specific metadata for agents (optional, only present in cloud responses)
Fields§
§id: Option<Uuid>§published: Option<bool>§published_at: Option<DateTime<Utc>>§is_owner: Option<bool>Trait Implementations§
Source§impl Clone for AgentCloudMetadata
impl Clone for AgentCloudMetadata
Source§fn clone(&self) -> AgentCloudMetadata
fn clone(&self) -> AgentCloudMetadata
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 AgentCloudMetadata
impl Debug for AgentCloudMetadata
Source§impl Default for AgentCloudMetadata
impl Default for AgentCloudMetadata
Source§fn default() -> AgentCloudMetadata
fn default() -> AgentCloudMetadata
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AgentCloudMetadata
impl<'de> Deserialize<'de> for AgentCloudMetadata
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
Auto Trait Implementations§
impl Freeze for AgentCloudMetadata
impl RefUnwindSafe for AgentCloudMetadata
impl Send for AgentCloudMetadata
impl Sync for AgentCloudMetadata
impl Unpin for AgentCloudMetadata
impl UnsafeUnpin for AgentCloudMetadata
impl UnwindSafe for AgentCloudMetadata
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