pub enum PvtError {
None,
NotEnoughMeasurements,
NotEnoughEphemerides,
DopTooLarge,
ResidualsTooLarge,
NoCovergence,
NotEnoughMeasurementsAfterRejection,
PositionProhibited,
NotEnoughDiffCorr,
BaseStationCoordinatesUnavailable,
Unknown(u8),
}Expand description
PVT error codes
Variants§
None
NotEnoughMeasurements
NotEnoughEphemerides
DopTooLarge
ResidualsTooLarge
NoCovergence
NotEnoughMeasurementsAfterRejection
PositionProhibited
NotEnoughDiffCorr
Unknown(u8)
Implementations§
Trait Implementations§
impl Copy for PvtError
impl Eq for PvtError
impl StructuralPartialEq for PvtError
Auto Trait Implementations§
impl Freeze for PvtError
impl RefUnwindSafe for PvtError
impl Send for PvtError
impl Sync for PvtError
impl Unpin for PvtError
impl UnsafeUnpin for PvtError
impl UnwindSafe for PvtError
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