pub struct LaserlineDeviceProblem;Expand description
Laserline device calibration problem (single camera + laser plane).
Trait Implementations§
Source§impl Debug for LaserlineDeviceProblem
impl Debug for LaserlineDeviceProblem
Source§impl ProblemType for LaserlineDeviceProblem
impl ProblemType for LaserlineDeviceProblem
Source§type Config = LaserlineDeviceConfig
type Config = LaserlineDeviceConfig
Configuration parameters that control calibration behavior. Read more
Source§type State = LaserlineDeviceState
type State = LaserlineDeviceState
Problem-specific workspace for intermediate results. Read more
Source§type Output = LaserlineDeviceOutput
type Output = LaserlineDeviceOutput
Final calibration output (single result). Read more
Source§type Export = LaserlineDeviceExport
type Export = LaserlineDeviceExport
Export format for external consumption. Read more
Source§fn validate_input(
input: &<LaserlineDeviceProblem as ProblemType>::Input,
) -> Result<(), Error>
fn validate_input( input: &<LaserlineDeviceProblem as ProblemType>::Input, ) -> Result<(), Error>
Validate input data after setting. Read more
Source§fn validate_config(
config: &<LaserlineDeviceProblem as ProblemType>::Config,
) -> Result<(), Error>
fn validate_config( config: &<LaserlineDeviceProblem as ProblemType>::Config, ) -> Result<(), Error>
Validate configuration. Read more
Source§fn on_input_change() -> InvalidationPolicy
fn on_input_change() -> InvalidationPolicy
Policy for what to clear when input changes. Read more
Source§fn export(
output: &<LaserlineDeviceProblem as ProblemType>::Output,
_config: &<LaserlineDeviceProblem as ProblemType>::Config,
) -> Result<<LaserlineDeviceProblem as ProblemType>::Export, Error>
fn export( output: &<LaserlineDeviceProblem as ProblemType>::Output, _config: &<LaserlineDeviceProblem as ProblemType>::Config, ) -> Result<<LaserlineDeviceProblem as ProblemType>::Export, Error>
Convert output to export format. Read more
Source§fn schema_version() -> u32
fn schema_version() -> u32
Schema version for forward compatibility. Read more
Source§fn validate_input_config(
_input: &Self::Input,
_config: &Self::Config,
) -> Result<(), Error>
fn validate_input_config( _input: &Self::Input, _config: &Self::Config, ) -> Result<(), Error>
Cross-validate input and config together. Read more
Source§fn on_config_change() -> InvalidationPolicy
fn on_config_change() -> InvalidationPolicy
Policy for what to clear when config changes. Read more
Auto Trait Implementations§
impl Freeze for LaserlineDeviceProblem
impl RefUnwindSafe for LaserlineDeviceProblem
impl Send for LaserlineDeviceProblem
impl Sync for LaserlineDeviceProblem
impl Unpin for LaserlineDeviceProblem
impl UnsafeUnpin for LaserlineDeviceProblem
impl UnwindSafe for LaserlineDeviceProblem
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
Source§impl<T> DistributionExt for Twhere
T: ?Sized,
impl<T> DistributionExt for Twhere
T: ?Sized,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.