pub struct UpbitJwtClaims {
pub access_key: String,
pub nonce: String,
pub query_hash: Option<String>,
pub body_hash: Option<String>,
}Expand description
JWT claims for Upbit authentication
Fields§
§access_key: StringAccess key (API key)
nonce: StringNonce - unique identifier for each request
query_hash: Option<String>Query hash for GET/DELETE requests with parameters (optional)
body_hash: Option<String>Body hash for POST/PUT requests with body (optional)
Trait Implementations§
Source§impl Debug for UpbitJwtClaims
impl Debug for UpbitJwtClaims
Source§impl<'de> Deserialize<'de> for UpbitJwtClaims
impl<'de> Deserialize<'de> for UpbitJwtClaims
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
Auto Trait Implementations§
impl Freeze for UpbitJwtClaims
impl RefUnwindSafe for UpbitJwtClaims
impl Send for UpbitJwtClaims
impl Sync for UpbitJwtClaims
impl Unpin for UpbitJwtClaims
impl UnwindSafe for UpbitJwtClaims
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