pub struct StatusRange(/* private fields */);Expand description
StatusRange specifies which HTTP status codes are accepted and
considered successful when checking a remote URL.
Only represents valid status codes,
invalid status codes (<100 or >999) are rejected.
Implementations§
Source§impl StatusRange
impl StatusRange
Sourcepub const fn new(start: u16, end: u16) -> Result<Self, StatusRangeError>
pub const fn new(start: u16, end: u16) -> Result<Self, StatusRangeError>
Creates a new StatusRange which matches values between start and
end (both inclusive).
§Errors
Returns an error if start > end, start < 100 or end > 999.
Sourcepub const fn start(&self) -> &u16
pub const fn start(&self) -> &u16
Returns the start value of this StatusRange.
Sourcepub const fn end(&self) -> &u16
pub const fn end(&self) -> &u16
Returns the end value of this StatusRange.
Sourcepub fn contains(&self, value: u16) -> bool
pub fn contains(&self, value: u16) -> bool
Returns whether this StatusRange contains value.
Trait Implementations§
Source§impl Clone for StatusRange
impl Clone for StatusRange
Source§fn clone(&self) -> StatusRange
fn clone(&self) -> StatusRange
Returns a duplicate of the value. Read more
1.0.0 · 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 StatusRange
impl Debug for StatusRange
Source§impl Display for StatusRange
impl Display for StatusRange
Source§impl<S: BuildHasher + Default> From<StatusRange> for HashSet<StatusCode, S>
impl<S: BuildHasher + Default> From<StatusRange> for HashSet<StatusCode, S>
Source§fn from(value: StatusRange) -> Self
fn from(value: StatusRange) -> Self
Converts to this type from the input type.
Source§impl FromStr for StatusRange
impl FromStr for StatusRange
Source§impl PartialEq for StatusRange
impl PartialEq for StatusRange
impl StructuralPartialEq for StatusRange
Auto Trait Implementations§
impl Freeze for StatusRange
impl RefUnwindSafe for StatusRange
impl Send for StatusRange
impl Sync for StatusRange
impl Unpin for StatusRange
impl UnwindSafe for StatusRange
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.