pub struct CreateCredentialWithCodeResponse {
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 With Code
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 CreateCredentialWithCodeResponse
impl Clone for CreateCredentialWithCodeResponse
Source§fn clone(&self) -> CreateCredentialWithCodeResponse
fn clone(&self) -> CreateCredentialWithCodeResponse
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<'de> Deserialize<'de> for CreateCredentialWithCodeResponse
impl<'de> Deserialize<'de> for CreateCredentialWithCodeResponse
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 CreateCredentialWithCodeResponse
impl RefUnwindSafe for CreateCredentialWithCodeResponse
impl Send for CreateCredentialWithCodeResponse
impl Sync for CreateCredentialWithCodeResponse
impl Unpin for CreateCredentialWithCodeResponse
impl UnsafeUnpin for CreateCredentialWithCodeResponse
impl UnwindSafe for CreateCredentialWithCodeResponse
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