pub struct ConnectorTransactionPhase {
pub label: Option<String>,
pub phase: TransactionPhase,
}Expand description
Connector transaction phase with debugging label.
JSON schema
{
"description": "Connector transaction phase with debugging label.",
"type": "object",
"required": [
"phase"
],
"properties": {
"label": {
"description": "Optional label for debugging.",
"type": [
"string",
"null"
]
},
"phase": {
"$ref": "#/components/schemas/TransactionPhase"
}
}
}Fields§
§label: Option<String>Optional label for debugging.
phase: TransactionPhaseImplementations§
Source§impl ConnectorTransactionPhase
impl ConnectorTransactionPhase
pub fn builder() -> ConnectorTransactionPhase
Trait Implementations§
Source§impl Clone for ConnectorTransactionPhase
impl Clone for ConnectorTransactionPhase
Source§fn clone(&self) -> ConnectorTransactionPhase
fn clone(&self) -> ConnectorTransactionPhase
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 ConnectorTransactionPhase
impl Debug for ConnectorTransactionPhase
Source§impl<'de> Deserialize<'de> for ConnectorTransactionPhase
impl<'de> Deserialize<'de> for ConnectorTransactionPhase
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<&ConnectorTransactionPhase> for ConnectorTransactionPhase
impl From<&ConnectorTransactionPhase> for ConnectorTransactionPhase
Source§fn from(value: &ConnectorTransactionPhase) -> Self
fn from(value: &ConnectorTransactionPhase) -> Self
Converts to this type from the input type.
Source§impl From<ConnectorTransactionPhase> for ConnectorTransactionPhase
impl From<ConnectorTransactionPhase> for ConnectorTransactionPhase
Source§fn from(value: ConnectorTransactionPhase) -> Self
fn from(value: ConnectorTransactionPhase) -> Self
Converts to this type from the input type.
Source§impl TryFrom<ConnectorTransactionPhase> for ConnectorTransactionPhase
impl TryFrom<ConnectorTransactionPhase> for ConnectorTransactionPhase
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: ConnectorTransactionPhase) -> Result<Self, ConversionError>
fn try_from(value: ConnectorTransactionPhase) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for ConnectorTransactionPhase
impl RefUnwindSafe for ConnectorTransactionPhase
impl Send for ConnectorTransactionPhase
impl Sync for ConnectorTransactionPhase
impl Unpin for ConnectorTransactionPhase
impl UnwindSafe for ConnectorTransactionPhase
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