pub struct MissingSymbolError {
pub symbol: &'static str,
pub source: Error,
}Expand description
Error produced when a symbol required by the bindings table is absent from the loaded library — in practice, a PDFium build older than the oldest version this crate supports.
Fields§
§symbol: &'static str§source: ErrorTrait Implementations§
Source§impl Debug for MissingSymbolError
impl Debug for MissingSymbolError
Source§impl Display for MissingSymbolError
impl Display for MissingSymbolError
Source§impl Error for MissingSymbolError
impl Error for MissingSymbolError
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 !RefUnwindSafe for MissingSymbolError
impl !UnwindSafe for MissingSymbolError
impl Freeze for MissingSymbolError
impl Send for MissingSymbolError
impl Sync for MissingSymbolError
impl Unpin for MissingSymbolError
impl UnsafeUnpin for MissingSymbolError
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