pub struct WorkspaceRecord {Show 14 fields
pub id: String,
pub tenant_id: String,
pub project_id: String,
pub backend: String,
pub durable_backend_id: String,
pub root: String,
pub config: WorkspaceConfig,
pub lifecycle: WorkspaceLifecycle,
pub version: u64,
pub lease: Option<WorkspaceLease>,
pub created_at_ms: u64,
pub updated_at_ms: u64,
pub labels: BTreeMap<String, String>,
pub relations: ResourceRelations,
}Fields§
§id: String§tenant_id: String§project_id: String§backend: String§durable_backend_id: String§root: String§config: WorkspaceConfig§lifecycle: WorkspaceLifecycle§version: u64§lease: Option<WorkspaceLease>§created_at_ms: u64§updated_at_ms: u64§labels: BTreeMap<String, String>§relations: ResourceRelationsTrait Implementations§
Source§impl Clone for WorkspaceRecord
impl Clone for WorkspaceRecord
Source§fn clone(&self) -> WorkspaceRecord
fn clone(&self) -> WorkspaceRecord
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 WorkspaceRecord
impl Debug for WorkspaceRecord
Source§impl<'de> Deserialize<'de> for WorkspaceRecord
impl<'de> Deserialize<'de> for WorkspaceRecord
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
impl Eq for WorkspaceRecord
Source§impl PartialEq for WorkspaceRecord
impl PartialEq for WorkspaceRecord
Source§impl Serialize for WorkspaceRecord
impl Serialize for WorkspaceRecord
impl StructuralPartialEq for WorkspaceRecord
Auto Trait Implementations§
impl Freeze for WorkspaceRecord
impl RefUnwindSafe for WorkspaceRecord
impl Send for WorkspaceRecord
impl Sync for WorkspaceRecord
impl Unpin for WorkspaceRecord
impl UnsafeUnpin for WorkspaceRecord
impl UnwindSafe for WorkspaceRecord
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