pub struct ConnectorConnectResultConsentRequired {
pub consent_url: String,
pub continuation_id: String,
pub kind: ConnectorConnectResultConsentRequiredKind,
}Expand description
Host-owned consent is required before bounded continuation can complete.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§consent_url: StringValidated HTTPS consent URL. The runtime does not open it.
continuation_id: StringOpaque ID accepted by continueConnection.
kind: ConnectorConnectResultConsentRequiredKindHost-owned consent is required before bounded continuation can complete.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ConnectorConnectResultConsentRequired
impl<'de> Deserialize<'de> for ConnectorConnectResultConsentRequired
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
Auto Trait Implementations§
impl Freeze for ConnectorConnectResultConsentRequired
impl RefUnwindSafe for ConnectorConnectResultConsentRequired
impl Send for ConnectorConnectResultConsentRequired
impl Sync for ConnectorConnectResultConsentRequired
impl Unpin for ConnectorConnectResultConsentRequired
impl UnsafeUnpin for ConnectorConnectResultConsentRequired
impl UnwindSafe for ConnectorConnectResultConsentRequired
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