pub struct SelectorCandidate {
pub node: SemanticNode,
pub rejected_reason: Option<String>,
}Expand description
A candidate considered while resolving a selector.
Fields§
§node: SemanticNode§rejected_reason: Option<String>Trait Implementations§
Source§impl Clone for SelectorCandidate
impl Clone for SelectorCandidate
Source§fn clone(&self) -> SelectorCandidate
fn clone(&self) -> SelectorCandidate
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 SelectorCandidate
impl Debug for SelectorCandidate
Source§impl<'de> Deserialize<'de> for SelectorCandidate
impl<'de> Deserialize<'de> for SelectorCandidate
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 SelectorCandidate
impl RefUnwindSafe for SelectorCandidate
impl Send for SelectorCandidate
impl Sync for SelectorCandidate
impl Unpin for SelectorCandidate
impl UnsafeUnpin for SelectorCandidate
impl UnwindSafe for SelectorCandidate
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