pub struct UdpipeError {
pub message: String,
}Expand description
Error type for UDPipe operations.
Fields§
§message: StringThe error message.
Implementations§
Trait Implementations§
Source§impl Clone for UdpipeError
impl Clone for UdpipeError
Source§fn clone(&self) -> UdpipeError
fn clone(&self) -> UdpipeError
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 UdpipeError
impl Debug for UdpipeError
Source§impl Display for UdpipeError
impl Display for UdpipeError
Source§impl Error for UdpipeError
impl Error for UdpipeError
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 UdpipeError
impl RefUnwindSafe for UdpipeError
impl Send for UdpipeError
impl Sync for UdpipeError
impl Unpin for UdpipeError
impl UnwindSafe for UdpipeError
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