pub enum RclMsgError {
ParseMemberError {
input: String,
reason: String,
},
InvalidDefaultError(String),
ParseDefaultValueError(String),
ParseConstantError {
input: String,
reason: String,
},
ParseConstantValueError(String),
InvalidServiceSpecification(String),
InvalidActionSpecification(String),
}Variants§
ParseMemberError
InvalidDefaultError(String)
ParseDefaultValueError(String)
ParseConstantError
ParseConstantValueError(String)
InvalidServiceSpecification(String)
InvalidActionSpecification(String)
Trait Implementations§
Source§impl Debug for RclMsgError
impl Debug for RclMsgError
Source§impl Display for RclMsgError
impl Display for RclMsgError
Source§impl Error for RclMsgError
impl Error for RclMsgError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for RclMsgError
impl RefUnwindSafe for RclMsgError
impl Send for RclMsgError
impl Sync for RclMsgError
impl Unpin for RclMsgError
impl UnwindSafe for RclMsgError
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