pub struct CovarianceMatrix {
pub values: Vec<f64>,
pub dimension: u8,
}Expand description
Covariance matrix (6x6 for pose, 3x3 for position).
Fields§
§values: Vec<f64>Row-major covariance values
dimension: u8Matrix dimension (3 for 3x3, 6 for 6x6)
Implementations§
Trait Implementations§
Source§impl Clone for CovarianceMatrix
impl Clone for CovarianceMatrix
Source§fn clone(&self) -> CovarianceMatrix
fn clone(&self) -> CovarianceMatrix
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 CovarianceMatrix
impl Debug for CovarianceMatrix
Source§impl Default for CovarianceMatrix
impl Default for CovarianceMatrix
Source§fn default() -> CovarianceMatrix
fn default() -> CovarianceMatrix
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CovarianceMatrix
impl<'de> Deserialize<'de> for CovarianceMatrix
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
Auto Trait Implementations§
impl Freeze for CovarianceMatrix
impl RefUnwindSafe for CovarianceMatrix
impl Send for CovarianceMatrix
impl Sync for CovarianceMatrix
impl Unpin for CovarianceMatrix
impl UnwindSafe for CovarianceMatrix
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