pub struct VisualizationPath {
pub frame_id: String,
pub poses: Vec<Pose2d>,
}Fields§
§frame_id: String§poses: Vec<Pose2d>Trait Implementations§
Source§impl Clone for VisualizationPath
impl Clone for VisualizationPath
Source§fn clone(&self) -> VisualizationPath
fn clone(&self) -> VisualizationPath
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 VisualizationPath
impl Debug for VisualizationPath
Source§impl Default for VisualizationPath
impl Default for VisualizationPath
Source§fn default() -> VisualizationPath
fn default() -> VisualizationPath
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VisualizationPath
impl<'de> Deserialize<'de> for VisualizationPath
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 VisualizationPath
impl JsonSchema for VisualizationPath
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 VisualizationPath
impl PartialEq for VisualizationPath
Source§fn eq(&self, other: &VisualizationPath) -> bool
fn eq(&self, other: &VisualizationPath) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for VisualizationPath
impl Serialize for VisualizationPath
impl StructuralPartialEq for VisualizationPath
Auto Trait Implementations§
impl Freeze for VisualizationPath
impl RefUnwindSafe for VisualizationPath
impl Send for VisualizationPath
impl Sync for VisualizationPath
impl Unpin for VisualizationPath
impl UnsafeUnpin for VisualizationPath
impl UnwindSafe for VisualizationPath
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