pub struct MachineMastering {
pub timestamp: DateTime<Utc>,
pub from_machine: String,
pub to_machine: String,
pub mastered_by: String,
}Expand description
Record of a machine mastering event.
Fields§
§timestamp: DateTime<Utc>When the mastering occurred
from_machine: StringMachine ID (hex) that was previously bound
to_machine: StringMachine ID (hex) that is now bound
mastered_by: StringMachine ID (hex) that performed the mastering
Trait Implementations§
Source§impl Clone for MachineMastering
impl Clone for MachineMastering
Source§fn clone(&self) -> MachineMastering
fn clone(&self) -> MachineMastering
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 MachineMastering
impl Debug for MachineMastering
Source§impl<'de> Deserialize<'de> for MachineMastering
impl<'de> Deserialize<'de> for MachineMastering
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 MachineMastering
impl RefUnwindSafe for MachineMastering
impl Send for MachineMastering
impl Sync for MachineMastering
impl Unpin for MachineMastering
impl UnwindSafe for MachineMastering
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