pub struct RangeOfUint64 {
pub end: u64,
pub start: u64,
}
Expand description
RangeOfUint64
JSON schema
{
"type": "object",
"required": [
"end",
"start"
],
"properties": {
"end": {
"type": "integer",
"format": "uint64",
"minimum": 0.0
},
"start": {
"type": "integer",
"format": "uint64",
"minimum": 0.0
}
}
}
Fields§
§end: u64
§start: u64
Trait Implementations§
Source§impl Clone for RangeOfUint64
impl Clone for RangeOfUint64
Source§fn clone(&self) -> RangeOfUint64
fn clone(&self) -> RangeOfUint64
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 RangeOfUint64
impl Debug for RangeOfUint64
Source§impl<'de> Deserialize<'de> for RangeOfUint64
impl<'de> Deserialize<'de> for RangeOfUint64
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
Source§impl From<&RangeOfUint64> for RangeOfUint64
impl From<&RangeOfUint64> for RangeOfUint64
Source§fn from(value: &RangeOfUint64) -> Self
fn from(value: &RangeOfUint64) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RangeOfUint64
impl RefUnwindSafe for RangeOfUint64
impl Send for RangeOfUint64
impl Sync for RangeOfUint64
impl Unpin for RangeOfUint64
impl UnwindSafe for RangeOfUint64
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