pub struct Machine {
pub id: String,
pub name: String,
pub created_at: String,
}Expand description
Represents a machine that has captured sessions.
Used for cloud sync to map machine UUIDs to friendly names. Each machine has a unique identifier (UUID) and a human-readable name that can be customized by the user.
Fields§
§id: StringUnique machine identifier (UUID).
name: StringHuman-readable machine name (e.g., hostname or custom name).
created_at: StringWhen this machine was first registered (RFC3339 format).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Machine
impl<'de> Deserialize<'de> for Machine
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
impl StructuralPartialEq for Machine
Auto Trait Implementations§
impl Freeze for Machine
impl RefUnwindSafe for Machine
impl Send for Machine
impl Sync for Machine
impl Unpin for Machine
impl UnwindSafe for Machine
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