pub struct EndpointSecretResponse {
pub secret: Option<String>,
}Expand description
EndpointSecretResponse
JSON schema
{
"type": "object",
"properties": {
"secret": {
"description": "DTO.ENDPOINT.SECRET",
"examples": [
"whsec_abcdXXX"
],
"type": "string"
}
}
}Fields§
§secret: Option<String>DTO.ENDPOINT.SECRET
Implementations§
Source§impl EndpointSecretResponse
impl EndpointSecretResponse
pub fn builder() -> EndpointSecretResponse
Trait Implementations§
Source§impl Clone for EndpointSecretResponse
impl Clone for EndpointSecretResponse
Source§fn clone(&self) -> EndpointSecretResponse
fn clone(&self) -> EndpointSecretResponse
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 EndpointSecretResponse
impl Debug for EndpointSecretResponse
Source§impl Default for EndpointSecretResponse
impl Default for EndpointSecretResponse
Source§impl<'de> Deserialize<'de> for EndpointSecretResponse
impl<'de> Deserialize<'de> for EndpointSecretResponse
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
Source§impl From<&EndpointSecretResponse> for EndpointSecretResponse
impl From<&EndpointSecretResponse> for EndpointSecretResponse
Source§fn from(value: &EndpointSecretResponse) -> Self
fn from(value: &EndpointSecretResponse) -> Self
Converts to this type from the input type.
Source§impl From<EndpointSecretResponse> for EndpointSecretResponse
impl From<EndpointSecretResponse> for EndpointSecretResponse
Source§fn from(value: EndpointSecretResponse) -> Self
fn from(value: EndpointSecretResponse) -> Self
Converts to this type from the input type.
Source§impl Serialize for EndpointSecretResponse
impl Serialize for EndpointSecretResponse
Source§impl TryFrom<EndpointSecretResponse> for EndpointSecretResponse
impl TryFrom<EndpointSecretResponse> for EndpointSecretResponse
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: EndpointSecretResponse) -> Result<Self, ConversionError>
fn try_from(value: EndpointSecretResponse) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for EndpointSecretResponse
impl RefUnwindSafe for EndpointSecretResponse
impl Send for EndpointSecretResponse
impl Sync for EndpointSecretResponse
impl Unpin for EndpointSecretResponse
impl UnwindSafe for EndpointSecretResponse
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