pub struct SchemaReport {
pub types: HashSet<OwnedNamedType>,
pub topics_in: Vec<TopicReport>,
pub topics_out: Vec<TopicReport>,
pub endpoints: Vec<EndpointReport>,
}Expand description
A report describing the schema spoken by the connected device
Fields§
§types: HashSet<OwnedNamedType>All custom types spoken by the device (on any endpoint or topic), as well as all primitive types. In the future, primitive types may be removed.
topics_in: Vec<TopicReport>All incoming (client to server) topics reported by the device
topics_out: Vec<TopicReport>All outgoing (server to client) topics reported by the device
endpoints: Vec<EndpointReport>All endpoints reported by the device
Trait Implementations§
Source§impl Clone for SchemaReport
impl Clone for SchemaReport
Source§fn clone(&self) -> SchemaReport
fn clone(&self) -> SchemaReport
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 SchemaReport
impl Debug for SchemaReport
Source§impl<'de> Deserialize<'de> for SchemaReport
impl<'de> Deserialize<'de> for SchemaReport
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 From<SchemaReport> for SchemaReport
impl From<SchemaReport> for SchemaReport
Source§fn from(value: SchemaReport) -> Self
fn from(value: SchemaReport) -> Self
Converts to this type from the input type.
Source§impl JsonSchema for SchemaReport
impl JsonSchema for SchemaReport
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
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 is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for SchemaReport
impl PartialEq for SchemaReport
Source§impl Serialize for SchemaReport
impl Serialize for SchemaReport
impl StructuralPartialEq for SchemaReport
Auto Trait Implementations§
impl Freeze for SchemaReport
impl RefUnwindSafe for SchemaReport
impl Send for SchemaReport
impl Sync for SchemaReport
impl Unpin for SchemaReport
impl UnwindSafe for SchemaReport
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