pub struct UnknownKeys {
pub keys: Vec<String>,
}Expand description
Exact selectors that match no #[traceable] function in this binary.
Fields§
§keys: Vec<String>The unrecognized selectors.
Trait Implementations§
Source§impl Clone for UnknownKeys
impl Clone for UnknownKeys
Source§fn clone(&self) -> UnknownKeys
fn clone(&self) -> UnknownKeys
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UnknownKeys
impl Debug for UnknownKeys
Source§impl Display for UnknownKeys
impl Display for UnknownKeys
Source§impl Error for UnknownKeys
impl Error for UnknownKeys
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 UnknownKeys
impl RefUnwindSafe for UnknownKeys
impl Send for UnknownKeys
impl Sync for UnknownKeys
impl Unpin for UnknownKeys
impl UnsafeUnpin for UnknownKeys
impl UnwindSafe for UnknownKeys
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