pub struct ExternalObject {
pub type_name: TypeName,
pub key: Key,
pub attrs: JsonMap,
pub backend_id: Option<BackendId>,
}Expand description
observed object representation for external adapters.
Fields§
§type_name: TypeNameobject type.
key: Keynatural key for matching.
attrs: JsonMapobserved attributes.
backend_id: Option<BackendId>backend id when known.
Trait Implementations§
Source§impl Clone for ExternalObject
impl Clone for ExternalObject
Source§fn clone(&self) -> ExternalObject
fn clone(&self) -> ExternalObject
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 ExternalObject
impl Debug for ExternalObject
Source§impl<'de> Deserialize<'de> for ExternalObject
impl<'de> Deserialize<'de> for ExternalObject
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 ExternalObject
impl RefUnwindSafe for ExternalObject
impl Send for ExternalObject
impl Sync for ExternalObject
impl Unpin for ExternalObject
impl UnsafeUnpin for ExternalObject
impl UnwindSafe for ExternalObject
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