pub struct SelectorFailure {
pub kind: SelectorFailureKind,
pub selector: SelectorQuery,
pub candidates: Vec<SelectorCandidate>,
pub message: String,
}Expand description
Detailed selector failure response.
Fields§
§kind: SelectorFailureKind§selector: SelectorQuery§candidates: Vec<SelectorCandidate>§message: StringTrait Implementations§
Source§impl Clone for SelectorFailure
impl Clone for SelectorFailure
Source§fn clone(&self) -> SelectorFailure
fn clone(&self) -> SelectorFailure
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 SelectorFailure
impl Debug for SelectorFailure
Source§impl<'de> Deserialize<'de> for SelectorFailure
impl<'de> Deserialize<'de> for SelectorFailure
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SelectorFailure
impl RefUnwindSafe for SelectorFailure
impl Send for SelectorFailure
impl Sync for SelectorFailure
impl Unpin for SelectorFailure
impl UnsafeUnpin for SelectorFailure
impl UnwindSafe for SelectorFailure
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