pub struct OccupancyGridUpdate {
pub header: Header,
pub x: i32,
pub y: i32,
pub width: u32,
pub height: u32,
pub data: Vec<i8>,
}Fields§
§header: Header§x: i32§y: i32§width: u32§height: u32§data: Vec<i8>Trait Implementations§
Source§impl Clone for OccupancyGridUpdate
impl Clone for OccupancyGridUpdate
Source§fn clone(&self) -> OccupancyGridUpdate
fn clone(&self) -> OccupancyGridUpdate
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 OccupancyGridUpdate
impl Debug for OccupancyGridUpdate
Source§impl Default for OccupancyGridUpdate
impl Default for OccupancyGridUpdate
Source§impl<'de> Deserialize<'de> for OccupancyGridUpdate
impl<'de> Deserialize<'de> for OccupancyGridUpdate
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 OccupancyGridUpdate
impl PartialEq for OccupancyGridUpdate
Source§impl Serialize for OccupancyGridUpdate
impl Serialize for OccupancyGridUpdate
impl Message for OccupancyGridUpdate
impl StructuralPartialEq for OccupancyGridUpdate
Auto Trait Implementations§
impl Freeze for OccupancyGridUpdate
impl RefUnwindSafe for OccupancyGridUpdate
impl Send for OccupancyGridUpdate
impl Sync for OccupancyGridUpdate
impl Unpin for OccupancyGridUpdate
impl UnwindSafe for OccupancyGridUpdate
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