pub struct RunLeaseEntry {
pub owner: String,
pub expiry: u64,
pub acquired_at: u64,
pub updated_at: u64,
}Expand description
Run lease entry for the response payload.
Fields§
§owner: StringLease owner.
expiry: u64Lease expiry timestamp.
acquired_at: u64Lease acquisition timestamp.
updated_at: u64Lease last update timestamp.
Trait Implementations§
Source§impl Clone for RunLeaseEntry
impl Clone for RunLeaseEntry
Source§fn clone(&self) -> RunLeaseEntry
fn clone(&self) -> RunLeaseEntry
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 RunLeaseEntry
impl Debug for RunLeaseEntry
Auto Trait Implementations§
impl Freeze for RunLeaseEntry
impl RefUnwindSafe for RunLeaseEntry
impl Send for RunLeaseEntry
impl Sync for RunLeaseEntry
impl Unpin for RunLeaseEntry
impl UnsafeUnpin for RunLeaseEntry
impl UnwindSafe for RunLeaseEntry
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