Struct rclrust_msg::map_msgs::msg::OccupancyGridUpdate
source · [−]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
sourceimpl Clone for OccupancyGridUpdate
impl Clone for OccupancyGridUpdate
sourcefn clone(&self) -> OccupancyGridUpdate
fn clone(&self) -> OccupancyGridUpdate
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for OccupancyGridUpdate
impl Debug for OccupancyGridUpdate
sourceimpl Default for OccupancyGridUpdate
impl Default for OccupancyGridUpdate
sourceimpl InternalDefault for OccupancyGridUpdate
impl InternalDefault for OccupancyGridUpdate
sourceimpl MessageT for OccupancyGridUpdate
impl MessageT for OccupancyGridUpdate
type Raw = OccupancyGridUpdate_Raw
type RawRef = OccupancyGridUpdate_RawRef
fn type_support() -> *const c_void
unsafe fn from_raw(from: &Self::Raw) -> Self
unsafe fn to_raw_ref(&self) -> Self::RawRef
sourceimpl PartialEq<OccupancyGridUpdate> for OccupancyGridUpdate
impl PartialEq<OccupancyGridUpdate> for OccupancyGridUpdate
sourcefn eq(&self, other: &OccupancyGridUpdate) -> bool
fn eq(&self, other: &OccupancyGridUpdate) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &OccupancyGridUpdate) -> bool
fn ne(&self, other: &OccupancyGridUpdate) -> bool
This method tests for !=
.
impl StructuralPartialEq for OccupancyGridUpdate
Auto Trait Implementations
impl RefUnwindSafe for OccupancyGridUpdate
impl Send for OccupancyGridUpdate
impl Sync for OccupancyGridUpdate
impl Unpin for OccupancyGridUpdate
impl UnwindSafe for OccupancyGridUpdate
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more