pub struct CreateClientResponse {
pub client_pk: PublicKey,
pub client_credentials: ClientCredentials,
pub created_at: TimestampMs,
}Expand description
The response to a request to create a new client.
Fields§
§client_pk: PublicKeyThe public key of the created client.
client_credentials: ClientCredentialsThe client credentials that can be used to authenticate as this client.
created_at: TimestampMsThe time at which the client was created, in milliseconds since the UNIX epoch.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CreateClientResponse
impl<'de> Deserialize<'de> for CreateClientResponse
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 CreateClientResponse
impl RefUnwindSafe for CreateClientResponse
impl Send for CreateClientResponse
impl Sync for CreateClientResponse
impl Unpin for CreateClientResponse
impl UnwindSafe for CreateClientResponse
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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