pub struct QueryString(/* private fields */);Expand description
Query string representation of a JSON-RPC request,
as: i=1&m=method¶m1=value1¶m2=value2, where id is optional
Booleans (“true”/“false”), numbers and “null” are parsed automatically,
Implementations§
Trait Implementations§
Source§impl AsRef<str> for QueryString
impl AsRef<str> for QueryString
Source§impl Debug for QueryString
impl Debug for QueryString
Source§impl Display for QueryString
impl Display for QueryString
Source§impl From<QueryString> for String
impl From<QueryString> for String
Source§fn from(qs: QueryString) -> Self
fn from(qs: QueryString) -> Self
Converts to this type from the input type.
Source§impl From<String> for QueryString
impl From<String> for QueryString
Source§impl<M: DeserializeOwned + Serialize> TryFrom<QueryString> for Request<M>
impl<M: DeserializeOwned + Serialize> TryFrom<QueryString> for Request<M>
Auto Trait Implementations§
impl Freeze for QueryString
impl RefUnwindSafe for QueryString
impl Send for QueryString
impl Sync for QueryString
impl Unpin for QueryString
impl UnsafeUnpin for QueryString
impl UnwindSafe for QueryString
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