Struct assembly_maps::luz::paths::core::PathVariant    
source · pub struct PathVariant<DataType, WaypointDataType> {
    pub header: PathHeader,
    pub path_data: DataType,
    pub waypoints: Vec<PathWaypointVariant<WaypointDataType>>,
}Expand description
Wrapper for all general path data
Fields§
§header: PathHeader§path_data: DataType§waypoints: Vec<PathWaypointVariant<WaypointDataType>>Trait Implementations§
source§impl<DataType: Debug, WaypointDataType: Debug> Debug for PathVariant<DataType, WaypointDataType>
 
impl<DataType: Debug, WaypointDataType: Debug> Debug for PathVariant<DataType, WaypointDataType>
source§impl<DataType, WaypointDataType> Serialize for PathVariant<DataType, WaypointDataType>
 
impl<DataType, WaypointDataType> Serialize for PathVariant<DataType, WaypointDataType>
Auto Trait Implementations§
impl<DataType, WaypointDataType> Freeze for PathVariant<DataType, WaypointDataType>where
    DataType: Freeze,
impl<DataType, WaypointDataType> RefUnwindSafe for PathVariant<DataType, WaypointDataType>where
    DataType: RefUnwindSafe,
    WaypointDataType: RefUnwindSafe,
impl<DataType, WaypointDataType> Send for PathVariant<DataType, WaypointDataType>
impl<DataType, WaypointDataType> Sync for PathVariant<DataType, WaypointDataType>
impl<DataType, WaypointDataType> Unpin for PathVariant<DataType, WaypointDataType>
impl<DataType, WaypointDataType> UnwindSafe for PathVariant<DataType, WaypointDataType>where
    DataType: UnwindSafe,
    WaypointDataType: UnwindSafe,
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