pub struct CustomEndpointAcknowledgement { /* private fields */ }Expand description
Explicit acknowledgement that a custom endpoint is a credential destination.
Construct this only at a trusted operator-configuration boundary. Tenant, request, webhook, or other attacker-controlled input must never select the endpoint. The type makes custom trust conspicuous but cannot determine whether configuration is operationally trustworthy.
ⓘ
use cloud_sdk::transport::CustomEndpointAcknowledgement;
let acknowledgement = CustomEndpointAcknowledgement { private: () };Implementations§
Source§impl CustomEndpointAcknowledgement
impl CustomEndpointAcknowledgement
Sourcepub const fn trusted_operator_configuration() -> Self
pub const fn trusted_operator_configuration() -> Self
Acknowledges a custom endpoint selected by trusted operator configuration.
Trait Implementations§
Source§impl Clone for CustomEndpointAcknowledgement
impl Clone for CustomEndpointAcknowledgement
Source§fn clone(&self) -> CustomEndpointAcknowledgement
fn clone(&self) -> CustomEndpointAcknowledgement
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 moreimpl Copy for CustomEndpointAcknowledgement
impl Eq for CustomEndpointAcknowledgement
impl StructuralPartialEq for CustomEndpointAcknowledgement
Auto Trait Implementations§
impl Freeze for CustomEndpointAcknowledgement
impl RefUnwindSafe for CustomEndpointAcknowledgement
impl Send for CustomEndpointAcknowledgement
impl Sync for CustomEndpointAcknowledgement
impl Unpin for CustomEndpointAcknowledgement
impl UnsafeUnpin for CustomEndpointAcknowledgement
impl UnwindSafe for CustomEndpointAcknowledgement
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