Struct rclrust_msg::sensor_msgs::msg::CameraInfo
source · [−]pub struct CameraInfo {
pub header: Header,
pub height: u32,
pub width: u32,
pub distortion_model: String,
pub d: Vec<f64>,
pub k: [f64; 9],
pub r: [f64; 9],
pub p: [f64; 12],
pub binning_x: u32,
pub binning_y: u32,
pub roi: RegionOfInterest,
}
Fields
header: Header
height: u32
width: u32
distortion_model: String
d: Vec<f64>
k: [f64; 9]
r: [f64; 9]
p: [f64; 12]
binning_x: u32
binning_y: u32
roi: RegionOfInterest
Trait Implementations
sourceimpl Clone for CameraInfo
impl Clone for CameraInfo
sourcefn clone(&self) -> CameraInfo
fn clone(&self) -> CameraInfo
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 CameraInfo
impl Debug for CameraInfo
sourceimpl Default for CameraInfo
impl Default for CameraInfo
sourceimpl InternalDefault for CameraInfo
impl InternalDefault for CameraInfo
sourceimpl MessageT for CameraInfo
impl MessageT for CameraInfo
type Raw = CameraInfo_Raw
type RawRef = CameraInfo_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<CameraInfo> for CameraInfo
impl PartialEq<CameraInfo> for CameraInfo
sourcefn eq(&self, other: &CameraInfo) -> bool
fn eq(&self, other: &CameraInfo) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CameraInfo) -> bool
fn ne(&self, other: &CameraInfo) -> bool
This method tests for !=
.
impl StructuralPartialEq for CameraInfo
Auto Trait Implementations
impl RefUnwindSafe for CameraInfo
impl Send for CameraInfo
impl Sync for CameraInfo
impl Unpin for CameraInfo
impl UnwindSafe for CameraInfo
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