pub struct UnsignedInteger(pub u64);Expand description
UnsignedInteger
JSON schema
{
"default": 100,
"examples": [
100
],
"type": "integer",
"format": "uint64"
}Tuple Fields§
§0: u64Trait Implementations§
Source§impl Clone for UnsignedInteger
impl Clone for UnsignedInteger
Source§fn clone(&self) -> UnsignedInteger
fn clone(&self) -> UnsignedInteger
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 UnsignedInteger
impl Debug for UnsignedInteger
Source§impl Deref for UnsignedInteger
impl Deref for UnsignedInteger
Source§impl<'de> Deserialize<'de> for UnsignedInteger
impl<'de> Deserialize<'de> for UnsignedInteger
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 Display for UnsignedInteger
impl Display for UnsignedInteger
Source§impl From<UnsignedInteger> for u64
impl From<UnsignedInteger> for u64
Source§fn from(value: UnsignedInteger) -> Self
fn from(value: UnsignedInteger) -> Self
Converts to this type from the input type.
Source§impl From<u64> for UnsignedInteger
impl From<u64> for UnsignedInteger
Source§impl FromStr for UnsignedInteger
impl FromStr for UnsignedInteger
Source§impl Serialize for UnsignedInteger
impl Serialize for UnsignedInteger
Source§impl TryFrom<&str> for UnsignedInteger
impl TryFrom<&str> for UnsignedInteger
Auto Trait Implementations§
impl Freeze for UnsignedInteger
impl RefUnwindSafe for UnsignedInteger
impl Send for UnsignedInteger
impl Sync for UnsignedInteger
impl Unpin for UnsignedInteger
impl UnsafeUnpin for UnsignedInteger
impl UnwindSafe for UnsignedInteger
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> 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.