Enum cuprate_json_rpc::Id

source ·
pub enum Id {
    Null,
    Num(u64),
    Str(Cow<'static, str>),
}
Expand description

Request/Response identification.

This is the JSON-RPC 2.0 id field type found in Request/Responses.

§From

This type implements From on:

and all of those wrapped in Option.

If the Option is None, Id::Null is returned.

Note that the &str implementations will allocate, use Id::from_static_str (or just manually create the Cow) for a non-allocating Id.

use cuprate_json_rpc::Id;

assert_eq!(Id::from(String::new()), Id::Str("".into()));
assert_eq!(Id::from(Some(String::new())), Id::Str("".into()));
assert_eq!(Id::from(None::<String>), Id::Null);
assert_eq!(Id::from(123_u64), Id::Num(123_u64));
assert_eq!(Id::from(Some(123_u64)), Id::Num(123_u64));
assert_eq!(Id::from(None::<u64>), Id::Null);

Variants§

§

Null

A JSON null value.

use cuprate_json_rpc::Id;
use serde_json::{from_value,to_value,json,Value};

assert_eq!(from_value::<Id>(json!(null)).unwrap(), Id::Null);
assert_eq!(to_value(Id::Null).unwrap(), Value::Null);

// Not a real `null`, but a string.
assert_eq!(from_value::<Id>(json!("null")).unwrap(), Id::Str("null".into()));
§

Num(u64)

A JSON number value.

§

Str(Cow<'static, str>)

A JSON string value.

This is a Cow<'static, str> to support both 0-allocation for const string ID’s commonly found in programs, as well as support for runtime String’s.

use std::borrow::Cow;
use cuprate_json_rpc::Id;

/// A program's static ID.
const ID: &'static str = "my_id";

// No allocation.
let s = Id::Str(Cow::Borrowed(ID));

// Runtime allocation.
let s = Id::Str(Cow::Owned("runtime_id".to_string()));

Implementations§

source§

impl Id

source

pub const fn as_u64(&self) -> Option<u64>

This returns Some(u64) if Id is a number.

use cuprate_json_rpc::Id;

assert_eq!(Id::Num(0).as_u64(), Some(0));
assert_eq!(Id::Str("0".into()).as_u64(), None);
assert_eq!(Id::Null.as_u64(), None);
source

pub fn as_str(&self) -> Option<&str>

This returns Some(&str) if Id is a string.

use cuprate_json_rpc::Id;

assert_eq!(Id::Str("0".into()).as_str(), Some("0"));
assert_eq!(Id::Num(0).as_str(), None);
assert_eq!(Id::Null.as_str(), None);
source

pub fn is_null(&self) -> bool

Returns true if self is Id::Null.

use cuprate_json_rpc::Id;

assert!(Id::Null.is_null());
assert!(!Id::Num(0).is_null());
assert!(!Id::Str("".into()).is_null());
source

pub const fn from_static_str(s: &'static str) -> Self

Create a new Id::Str from a static string.

use cuprate_json_rpc::Id;

assert_eq!(Id::from_static_str("hi"), Id::Str("hi".into()));

Trait Implementations§

source§

impl Clone for Id

source§

fn clone(&self) -> Id

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Id

source§

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

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

impl<'de> Deserialize<'de> for Id

source§

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<&str> for Id

source§

fn from(s: &str) -> Self

Converts to this type from the input type.
source§

impl From<&u16> for Id

source§

fn from(u: &u16) -> Self

Converts to this type from the input type.
source§

impl From<&u32> for Id

source§

fn from(u: &u32) -> Self

Converts to this type from the input type.
source§

impl From<&u64> for Id

source§

fn from(u: &u64) -> Self

Converts to this type from the input type.
source§

impl From<&u8> for Id

source§

fn from(u: &u8) -> Self

Converts to this type from the input type.
source§

impl From<Option<&str>> for Id

source§

fn from(s: Option<&str>) -> Self

Converts to this type from the input type.
source§

impl From<Option<String>> for Id

source§

fn from(s: Option<String>) -> Self

Converts to this type from the input type.
source§

impl From<Option<u16>> for Id

source§

fn from(u: Option<u16>) -> Self

Converts to this type from the input type.
source§

impl From<Option<u32>> for Id

source§

fn from(u: Option<u32>) -> Self

Converts to this type from the input type.
source§

impl From<Option<u64>> for Id

source§

fn from(u: Option<u64>) -> Self

Converts to this type from the input type.
source§

impl From<Option<u8>> for Id

source§

fn from(u: Option<u8>) -> Self

Converts to this type from the input type.
source§

impl From<String> for Id

source§

fn from(s: String) -> Self

Converts to this type from the input type.
source§

impl From<u16> for Id

source§

fn from(u: u16) -> Self

Converts to this type from the input type.
source§

impl From<u32> for Id

source§

fn from(u: u32) -> Self

Converts to this type from the input type.
source§

impl From<u64> for Id

source§

fn from(u: u64) -> Self

Converts to this type from the input type.
source§

impl From<u8> for Id

source§

fn from(u: u8) -> Self

Converts to this type from the input type.
source§

impl FromStr for Id

source§

type Err = Infallible

The associated error which can be returned from parsing.
source§

fn from_str(s: &str) -> Result<Self, Infallible>

Parses a string s to return a value of this type. Read more
source§

impl Hash for Id

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Ord for Id

source§

fn cmp(&self, other: &Id) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for Id

source§

fn eq(&self, other: &Id) -> 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 PartialOrd for Id

source§

fn partial_cmp(&self, other: &Id) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

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

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Serialize for Id

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Eq for Id

source§

impl StructuralPartialEq for Id

Auto Trait Implementations§

§

impl Freeze for Id

§

impl RefUnwindSafe for Id

§

impl Send for Id

§

impl Sync for Id

§

impl Unpin for Id

§

impl UnwindSafe for Id

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<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> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 24 bytes

Size for each variant:

  • Null: 0 bytes
  • Num: 16 bytes
  • Str: 24 bytes