Struct sn0int::autonoscope::DomainRule

source ·
pub struct DomainRule { /* private fields */ }

Trait Implementations§

source§

impl AutoRule<Domain> for DomainRule

source§

fn matches(&self, domain: &Domain) -> Result<bool>

source§

impl AutoRule<NewDomain> for DomainRule

source§

fn matches(&self, domain: &NewDomain) -> Result<bool>

source§

impl AutoRule<NewSubdomain> for DomainRule

source§

fn matches(&self, domain: &NewSubdomain) -> Result<bool>

source§

impl AutoRule<NewUrl> for DomainRule

source§

fn matches(&self, url: &NewUrl) -> Result<bool>

source§

impl AutoRule<Subdomain> for DomainRule

source§

fn matches(&self, domain: &Subdomain) -> Result<bool>

source§

impl AutoRule<Url> for DomainRule

source§

fn matches(&self, url: &Url) -> Result<bool>

source§

impl AutoRule<str> for DomainRule

source§

fn matches(&self, domain: &str) -> Result<bool>

source§

impl Debug for DomainRule

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq for DomainRule

source§

fn eq(&self, other: &DomainRule) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl RulePrecision for DomainRule

source§

impl ToRule for DomainRule

source§

fn to_rule(&self) -> (&'static str, String)

source§

impl ToString for DomainRule

source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl TryFrom<&str> for DomainRule

source§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(rule: &str) -> Result<DomainRule>

Performs the conversion.
source§

impl TryFrom<Autonoscope> for DomainRule

source§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(rule: Autonoscope) -> Result<DomainRule>

Performs the conversion.
source§

impl StructuralPartialEq for DomainRule

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<'a, T> AsTaggedExplicit<'a> for T
where T: 'a,

source§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self>

source§

impl<'a, T> AsTaggedImplicit<'a> for T
where T: 'a,

source§

fn implicit( self, class: Class, constructed: bool, tag: u32, ) -> TaggedParser<'a, Implicit, Self>

source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoSql for T

source§

fn into_sql<T>(self) -> Self::Expression
where Self: Sized + AsExpression<T>,

Convert self to an expression for Diesel’s query builder. Read more
source§

fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression
where &'a Self: AsExpression<T>,

Convert &self to an expression for Diesel’s query builder. Read more
source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
source§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

source§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<G1, G2> Within<G2> for G1
where G2: Contains<G1>,

source§

fn is_within(&self, b: &G2) -> bool