pub struct GetRegistrationCodeResponse {
pub registration_code: Option<String>,
}Expand description
The output from the GetRegistrationCode operation.
Fields§
§registration_code: Option<String>The CA certificate registration code.
Trait Implementations§
Source§impl Clone for GetRegistrationCodeResponse
impl Clone for GetRegistrationCodeResponse
Source§fn clone(&self) -> GetRegistrationCodeResponse
fn clone(&self) -> GetRegistrationCodeResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 GetRegistrationCodeResponse
impl Debug for GetRegistrationCodeResponse
Source§impl Default for GetRegistrationCodeResponse
impl Default for GetRegistrationCodeResponse
Source§fn default() -> GetRegistrationCodeResponse
fn default() -> GetRegistrationCodeResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetRegistrationCodeResponse
impl<'de> Deserialize<'de> for GetRegistrationCodeResponse
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
impl StructuralPartialEq for GetRegistrationCodeResponse
Auto Trait Implementations§
impl Freeze for GetRegistrationCodeResponse
impl RefUnwindSafe for GetRegistrationCodeResponse
impl Send for GetRegistrationCodeResponse
impl Sync for GetRegistrationCodeResponse
impl Unpin for GetRegistrationCodeResponse
impl UnwindSafe for GetRegistrationCodeResponse
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