pub struct ObstacleArray {
pub header: Header,
pub obstacles: Vec<Obstacle>,
}Fields§
§header: Header§obstacles: Vec<Obstacle>Trait Implementations§
Source§impl Clone for ObstacleArray
impl Clone for ObstacleArray
Source§fn clone(&self) -> ObstacleArray
fn clone(&self) -> ObstacleArray
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 ObstacleArray
impl Debug for ObstacleArray
Source§impl Default for ObstacleArray
impl Default for ObstacleArray
Source§impl<'de> Deserialize<'de> for ObstacleArray
impl<'de> Deserialize<'de> for ObstacleArray
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 PartialEq for ObstacleArray
impl PartialEq for ObstacleArray
Source§impl Serialize for ObstacleArray
impl Serialize for ObstacleArray
impl Message for ObstacleArray
impl StructuralPartialEq for ObstacleArray
Auto Trait Implementations§
impl Freeze for ObstacleArray
impl RefUnwindSafe for ObstacleArray
impl Send for ObstacleArray
impl Sync for ObstacleArray
impl Unpin for ObstacleArray
impl UnwindSafe for ObstacleArray
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