pub struct CreateCredentialResponse {
pub kind: String,
pub credential_id: String,
pub credential_uuid: String,
pub date_created: String,
pub is_active: bool,
pub name: String,
pub public_key: String,
pub relying_party_id: String,
pub origin: String,
}Expand description
Create Credential
Fields§
§kind: String§credential_id: String§credential_uuid: String§date_created: String§is_active: bool§name: String§public_key: String§relying_party_id: String§origin: StringTrait Implementations§
Source§impl Clone for CreateCredentialResponse
impl Clone for CreateCredentialResponse
Source§fn clone(&self) -> CreateCredentialResponse
fn clone(&self) -> CreateCredentialResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CreateCredentialResponse
impl Debug for CreateCredentialResponse
Source§impl<'de> Deserialize<'de> for CreateCredentialResponse
impl<'de> Deserialize<'de> for CreateCredentialResponse
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 CreateCredentialResponse
impl RefUnwindSafe for CreateCredentialResponse
impl Send for CreateCredentialResponse
impl Sync for CreateCredentialResponse
impl Unpin for CreateCredentialResponse
impl UnsafeUnpin for CreateCredentialResponse
impl UnwindSafe for CreateCredentialResponse
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