pub struct KrakenEmbedStartVerificationDebug {
pub outcome: Option<KrakenEmbedStartVerificationDebugOutcome>,
}Expand description
Debug options for start verification. Only works in non-production environments.
JSON schema
{
"title": "KrakenEmbedStartVerificationDebug",
"description": "Debug options for start verification. Only works in
non-production environments.",
"type": "object",
"properties": {
"outcome": {
"type": "string",
"enum": [
"failed"
]
}
},
"x-stainless-model":
"kraken_embed.kraken_embed_start_verification_debug"
}Fields§
§outcome: Option<KrakenEmbedStartVerificationDebugOutcome>Trait Implementations§
Source§impl Clone for KrakenEmbedStartVerificationDebug
impl Clone for KrakenEmbedStartVerificationDebug
Source§fn clone(&self) -> KrakenEmbedStartVerificationDebug
fn clone(&self) -> KrakenEmbedStartVerificationDebug
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 KrakenEmbedStartVerificationDebug
impl<'de> Deserialize<'de> for KrakenEmbedStartVerificationDebug
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<&KrakenEmbedStartVerificationDebug> for KrakenEmbedStartVerificationDebug
impl From<&KrakenEmbedStartVerificationDebug> for KrakenEmbedStartVerificationDebug
Source§fn from(value: &KrakenEmbedStartVerificationDebug) -> Self
fn from(value: &KrakenEmbedStartVerificationDebug) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for KrakenEmbedStartVerificationDebug
impl RefUnwindSafe for KrakenEmbedStartVerificationDebug
impl Send for KrakenEmbedStartVerificationDebug
impl Sync for KrakenEmbedStartVerificationDebug
impl Unpin for KrakenEmbedStartVerificationDebug
impl UnsafeUnpin for KrakenEmbedStartVerificationDebug
impl UnwindSafe for KrakenEmbedStartVerificationDebug
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