pub struct StatusHistoryEntry {
pub status: String,
pub agent_id: Option<String>,
pub agent_type: Option<String>,
pub timestamp: String,
}Fields§
§status: String§agent_id: Option<String>§agent_type: Option<String>§timestamp: StringTrait Implementations§
Source§impl Clone for StatusHistoryEntry
impl Clone for StatusHistoryEntry
Source§fn clone(&self) -> StatusHistoryEntry
fn clone(&self) -> StatusHistoryEntry
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 StatusHistoryEntry
impl Debug for StatusHistoryEntry
Source§impl<'de> Deserialize<'de> for StatusHistoryEntry
impl<'de> Deserialize<'de> for StatusHistoryEntry
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 StatusHistoryEntry
impl RefUnwindSafe for StatusHistoryEntry
impl Send for StatusHistoryEntry
impl Sync for StatusHistoryEntry
impl Unpin for StatusHistoryEntry
impl UnsafeUnpin for StatusHistoryEntry
impl UnwindSafe for StatusHistoryEntry
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