Enum crazyflie_lib::Error [−][src]
pub enum Error {
ProtocolError(String),
ParamError(String),
LogError(String),
ConversionError(String),
LinkError(Error),
Disconnected,
VariableNotFound,
SystemError(String),
}Expand description
Error enum type
Variants
ProtocolError(String)Unexpected protocol error. The String contains the reason.
Tuple Fields of ProtocolError
0: StringParamError(String)Parameter subsystem error. The String contains the reason.
Tuple Fields of ParamError
0: StringLogError(String)Log Subsystem error. The String contains the reason.
Tuple Fields of LogError
0: StringConversionError(String)Value conversion error. The String contains the reason.
Tuple Fields of ConversionError
0: StringLinkError(Error)Crazyflie link configuration error. Returns the error from the Link.
Tuple Fields of LinkError
0: ErrorThe Crazyflie object is currently disconnected.
Variable not found in TOC.
SystemError(String)Error with the async executors.
Tuple Fields of SystemError
0: StringTrait Implementations
Performs the conversion.