pub struct Instance {
pub id: String,
pub created: Option<String>,
pub updated: Option<String>,
pub seq: Option<i64>,
pub type: String,
pub deleted: Option<String>,
pub properties: Value,
pub org: String,
}Fields§
§id: String§created: Option<String>§updated: Option<String>§seq: Option<i64>§type: StringThe entity type of this instance
deleted: Option<String>§properties: ValueAn instance of a JSON Schema
org: StringThe id of the organization that this instance belongs to
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Instance
impl<'de> Deserialize<'de> for Instance
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 StructuralPartialEq for Instance
Auto Trait Implementations§
impl Freeze for Instance
impl RefUnwindSafe for Instance
impl Send for Instance
impl Sync for Instance
impl Unpin for Instance
impl UnwindSafe for Instance
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