pub struct IndividualTypeDescription {
pub type_name: String,
pub fields: Vec<Field>,
}Expand description
Description of a single type
Fields§
§type_name: StringFully qualified type name (e.g., “std_msgs/msg/Header”)
fields: Vec<Field>Fields in this type
Implementations§
Trait Implementations§
Source§impl Clone for IndividualTypeDescription
impl Clone for IndividualTypeDescription
Source§fn clone(&self) -> IndividualTypeDescription
fn clone(&self) -> IndividualTypeDescription
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 IndividualTypeDescription
impl Debug for IndividualTypeDescription
Source§impl<'de> Deserialize<'de> for IndividualTypeDescription
impl<'de> Deserialize<'de> for IndividualTypeDescription
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 IndividualTypeDescription
impl RefUnwindSafe for IndividualTypeDescription
impl Send for IndividualTypeDescription
impl Sync for IndividualTypeDescription
impl Unpin for IndividualTypeDescription
impl UnsafeUnpin for IndividualTypeDescription
impl UnwindSafe for IndividualTypeDescription
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