pub struct BuildAgent {
pub id: String,
pub name: String,
pub hostname: String,
pub status: String,
pub job_id: Option<String>,
pub last_seen: DateTime<Utc>,
pub metadata: HashMap<String, String>,
}Fields§
§id: String§name: String§hostname: String§status: String§job_id: Option<String>§last_seen: DateTime<Utc>§metadata: HashMap<String, String>Trait Implementations§
Source§impl Clone for BuildAgent
impl Clone for BuildAgent
Source§fn clone(&self) -> BuildAgent
fn clone(&self) -> BuildAgent
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 BuildAgent
impl Debug for BuildAgent
Source§impl<'de> Deserialize<'de> for BuildAgent
impl<'de> Deserialize<'de> for BuildAgent
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 BuildAgent
impl RefUnwindSafe for BuildAgent
impl Send for BuildAgent
impl Sync for BuildAgent
impl Unpin for BuildAgent
impl UnwindSafe for BuildAgent
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