pub struct ObjectMeta {
pub id: TaskId,
pub resource_version: u64,
pub created_at: SystemTime,
pub updated_at: SystemTime,
}Expand description
Resource metadata.
Identity (id), optimistic-concurrency counter (resource_version), and lifecycle timestamps.
Slot and labels live in crate::TaskSpec as the single source of truth.
§Also
Taskaggregate that embedsObjectMeta.
Fields§
§id: TaskIdUnique task identifier.
resource_version: u64Incremented on any change to the resource (spec or status).
created_at: SystemTimeWhen the resource was created.
updated_at: SystemTimeWhen the resource was last updated.
Implementations§
Source§impl ObjectMeta
impl ObjectMeta
Sourcepub fn bump_resource_version(&mut self)
pub fn bump_resource_version(&mut self)
Increment resource_version and stamp updated_at.
Trait Implementations§
Source§impl Clone for ObjectMeta
impl Clone for ObjectMeta
Source§fn clone(&self) -> ObjectMeta
fn clone(&self) -> ObjectMeta
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 ObjectMeta
impl Debug for ObjectMeta
Source§impl<'de> Deserialize<'de> for ObjectMeta
impl<'de> Deserialize<'de> for ObjectMeta
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
Source§impl PartialEq for ObjectMeta
impl PartialEq for ObjectMeta
Source§impl Serialize for ObjectMeta
impl Serialize for ObjectMeta
impl Eq for ObjectMeta
impl StructuralPartialEq for ObjectMeta
Auto Trait Implementations§
impl Freeze for ObjectMeta
impl RefUnwindSafe for ObjectMeta
impl Send for ObjectMeta
impl Sync for ObjectMeta
impl Unpin for ObjectMeta
impl UnsafeUnpin for ObjectMeta
impl UnwindSafe for ObjectMeta
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