pub struct Client {
pub latest_version_id: Uuid,
pub snapshot: Option<Snapshot>,
}
Expand description
A representation of stored metadata about a client.
Fields§
§latest_version_id: Uuid
The latest version for this client (may be the nil version)
snapshot: Option<Snapshot>
Data about the latest snapshot for this client
Trait Implementations§
impl Eq for Client
impl StructuralPartialEq for Client
Auto Trait Implementations§
impl Freeze for Client
impl RefUnwindSafe for Client
impl Send for Client
impl Sync for Client
impl Unpin for Client
impl UnwindSafe for Client
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