pub struct CellRecord {
pub id: String,
pub formation_id: Option<Uuid>,
pub status: String,
}Expand description
Projected view of an execution cell. Fields are kept minimal — the
authoritative cell state is in JetStream; this is just a cache for
GET /v1/cells list latency.
Fields§
§id: String§formation_id: Option<Uuid>§status: StringTrait Implementations§
Source§impl Clone for CellRecord
impl Clone for CellRecord
Source§fn clone(&self) -> CellRecord
fn clone(&self) -> CellRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CellRecord
impl Debug for CellRecord
Source§impl<'de> Deserialize<'de> for CellRecord
impl<'de> Deserialize<'de> for CellRecord
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 CellRecord
impl RefUnwindSafe for CellRecord
impl Send for CellRecord
impl Sync for CellRecord
impl Unpin for CellRecord
impl UnsafeUnpin for CellRecord
impl UnwindSafe for CellRecord
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