pub struct ModbusSchemaSummary {
pub kind: &'static str,
pub formats: Vec<&'static str>,
pub top_level_sections: Vec<SchemaSection>,
pub commands: Vec<&'static str>,
pub notes: Vec<&'static str>,
}Expand description
Typed schema surface used by inspect modbus-schema.
Fields§
§kind: &'static str§formats: Vec<&'static str>§top_level_sections: Vec<SchemaSection>§commands: Vec<&'static str>§notes: Vec<&'static str>Trait Implementations§
Source§impl Clone for ModbusSchemaSummary
impl Clone for ModbusSchemaSummary
Source§fn clone(&self) -> ModbusSchemaSummary
fn clone(&self) -> ModbusSchemaSummary
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 ModbusSchemaSummary
impl Debug for ModbusSchemaSummary
Auto Trait Implementations§
impl Freeze for ModbusSchemaSummary
impl RefUnwindSafe for ModbusSchemaSummary
impl Send for ModbusSchemaSummary
impl Sync for ModbusSchemaSummary
impl Unpin for ModbusSchemaSummary
impl UnsafeUnpin for ModbusSchemaSummary
impl UnwindSafe for ModbusSchemaSummary
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