pub struct UiSnapshotRef {
pub evidence: AssetRef,
}Expand description
Reference to the UI-tree evidence of an observation. Minimal shape
(the evidence asset); exact DeviceRail UiSnapshotRef field alignment is
re-verified in M1 — pending incorporation.
Fields§
§evidence: AssetRefThe normalized UI-tree evidence asset.
Trait Implementations§
Source§impl Clone for UiSnapshotRef
impl Clone for UiSnapshotRef
Source§fn clone(&self) -> UiSnapshotRef
fn clone(&self) -> UiSnapshotRef
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 UiSnapshotRef
impl Debug for UiSnapshotRef
Source§impl<'de> Deserialize<'de> for UiSnapshotRef
impl<'de> Deserialize<'de> for UiSnapshotRef
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<UiSnapshotRef, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<UiSnapshotRef, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl JsonSchema for UiSnapshotRef
impl JsonSchema for UiSnapshotRef
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for UiSnapshotRef
impl PartialEq for UiSnapshotRef
Source§impl Serialize for UiSnapshotRef
impl Serialize for UiSnapshotRef
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for UiSnapshotRef
Auto Trait Implementations§
impl Freeze for UiSnapshotRef
impl RefUnwindSafe for UiSnapshotRef
impl Send for UiSnapshotRef
impl Sync for UiSnapshotRef
impl Unpin for UiSnapshotRef
impl UnsafeUnpin for UiSnapshotRef
impl UnwindSafe for UiSnapshotRef
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