pub struct ComputerRecord {
pub id: String,
pub scope: ResourceScope,
pub provider_ref: ProviderResourceRef,
pub lifecycle: ComputerLifecycle,
pub capabilities: ProviderCapabilities,
pub owners: Vec<OwnerRef>,
pub version: u64,
pub created_at_ms: u64,
pub updated_at_ms: u64,
}Fields§
§id: String§scope: ResourceScope§provider_ref: ProviderResourceRef§lifecycle: ComputerLifecycle§capabilities: ProviderCapabilities§owners: Vec<OwnerRef>§version: u64§created_at_ms: u64§updated_at_ms: u64Trait Implementations§
Source§impl Clone for ComputerRecord
impl Clone for ComputerRecord
Source§fn clone(&self) -> ComputerRecord
fn clone(&self) -> ComputerRecord
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 ComputerRecord
impl Debug for ComputerRecord
Source§impl<'de> Deserialize<'de> for ComputerRecord
impl<'de> Deserialize<'de> for ComputerRecord
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 ComputerRecord
Source§impl From<ComputerRecord> for ComputerResource
impl From<ComputerRecord> for ComputerResource
Source§fn from(record: ComputerRecord) -> Self
fn from(record: ComputerRecord) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ComputerRecord
impl PartialEq for ComputerRecord
Source§impl Serialize for ComputerRecord
impl Serialize for ComputerRecord
impl StructuralPartialEq for ComputerRecord
Auto Trait Implementations§
impl Freeze for ComputerRecord
impl RefUnwindSafe for ComputerRecord
impl Send for ComputerRecord
impl Sync for ComputerRecord
impl Unpin for ComputerRecord
impl UnsafeUnpin for ComputerRecord
impl UnwindSafe for ComputerRecord
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