pub struct UiSnapshot {
pub format_version: u16,
pub observation_id: Uuid,
pub context: UiContextRef,
pub root_stable_node_ids: Vec<String>,
pub nodes: Vec<UiNode>,
}Expand description
Canonical UI Tree. nodes is preorder and every parent must precede its
contiguous descendants. The serialized payload is bounded to 768 KiB.
Fields§
§format_version: u16§observation_id: Uuid§context: UiContextRef§root_stable_node_ids: Vec<String>§nodes: Vec<UiNode>Implementations§
Source§impl UiSnapshot
impl UiSnapshot
pub fn validate(&self) -> Result<(), UiContractError>
pub fn validate_against( &self, observation_id: Uuid, reference: &UiSnapshotRef, ) -> Result<(), UiContractError>
Trait Implementations§
Source§impl Clone for UiSnapshot
impl Clone for UiSnapshot
Source§fn clone(&self) -> UiSnapshot
fn clone(&self) -> UiSnapshot
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 UiSnapshot
impl Debug for UiSnapshot
Source§impl<'de> Deserialize<'de> for UiSnapshot
impl<'de> Deserialize<'de> for UiSnapshot
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
Source§impl JsonSchema for UiSnapshot
impl JsonSchema for UiSnapshot
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 UiSnapshot
impl PartialEq for UiSnapshot
Source§impl Serialize for UiSnapshot
impl Serialize for UiSnapshot
impl StructuralPartialEq for UiSnapshot
Auto Trait Implementations§
impl Freeze for UiSnapshot
impl RefUnwindSafe for UiSnapshot
impl Send for UiSnapshot
impl Sync for UiSnapshot
impl Unpin for UiSnapshot
impl UnsafeUnpin for UiSnapshot
impl UnwindSafe for UiSnapshot
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