pub struct GetPersonalityNonceResponse {
pub nonce: String,
}Expand description
The personality nonce from a drive.
This object shall contain the personality nonce from a drive.
Fields§
§nonce: StringThe personality nonce.
This property shall contain the personality nonce as a hex-encoded string as defined by the ‘CDP Random Nonce Data’ clause of the NVMe Base Specification.
Trait Implementations§
Source§impl Debug for GetPersonalityNonceResponse
impl Debug for GetPersonalityNonceResponse
Source§impl<'de> Deserialize<'de> for GetPersonalityNonceResponse
impl<'de> Deserialize<'de> for GetPersonalityNonceResponse
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 Send for GetPersonalityNonceResponse
SAFETY: All generated data types are Send
impl Sync for GetPersonalityNonceResponse
SAFETY: All generated data types are Sync
Auto Trait Implementations§
impl Freeze for GetPersonalityNonceResponse
impl RefUnwindSafe for GetPersonalityNonceResponse
impl Unpin for GetPersonalityNonceResponse
impl UnsafeUnpin for GetPersonalityNonceResponse
impl UnwindSafe for GetPersonalityNonceResponse
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