pub struct HttpRouteHeaderMatchIntegerRange {
pub end: Option<i32>,
pub start: Option<i32>,
}Expand description
Represents an integer value range.
This type is not used in any activity, and only used as part of another schema.
Fields§
§end: Option<i32>End of the range (exclusive)
start: Option<i32>Start of the range (inclusive)
Trait Implementations§
Source§impl Clone for HttpRouteHeaderMatchIntegerRange
impl Clone for HttpRouteHeaderMatchIntegerRange
Source§fn clone(&self) -> HttpRouteHeaderMatchIntegerRange
fn clone(&self) -> HttpRouteHeaderMatchIntegerRange
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 Default for HttpRouteHeaderMatchIntegerRange
impl Default for HttpRouteHeaderMatchIntegerRange
Source§fn default() -> HttpRouteHeaderMatchIntegerRange
fn default() -> HttpRouteHeaderMatchIntegerRange
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HttpRouteHeaderMatchIntegerRange
impl<'de> Deserialize<'de> for HttpRouteHeaderMatchIntegerRange
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
impl Part for HttpRouteHeaderMatchIntegerRange
Auto Trait Implementations§
impl Freeze for HttpRouteHeaderMatchIntegerRange
impl RefUnwindSafe for HttpRouteHeaderMatchIntegerRange
impl Send for HttpRouteHeaderMatchIntegerRange
impl Sync for HttpRouteHeaderMatchIntegerRange
impl Unpin for HttpRouteHeaderMatchIntegerRange
impl UnwindSafe for HttpRouteHeaderMatchIntegerRange
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